Changes between Version 1 and Version 2 of ImportantUseCase3


Ignore:
Timestamp:
02/14/23 19:40:08 (17 months ago)
Author:
201065
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase3

    v1 v2  
    2222select articlename, price, quantity, orderid, imageurl from orderedarticles o
    2323left join articles a on a.articleid=o.articleid
    24 where articlestatus='Delivered' and locationid=3
     24where articlestatus='DELIVERED' and locationid=3
    2525}}}
    2626
     
    5454{{{#!sql
    5555update orderedarticles
    56 set articlestatus='Processed'
     56set articlestatus='PROCESSED'
    5757where oarticleid=3
    5858}}}
     
    6464{{{#!sql
    6565update orders
    66 set status='Processed'
     66set status='PROCESSED'
    6767where orderid=3
    6868}}}