Changes between Version 1 and Version 2 of ImportantUseCase3
- Timestamp:
- 02/14/23 19:40:08 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase3
v1 v2 22 22 select articlename, price, quantity, orderid, imageurl from orderedarticles o 23 23 left join articles a on a.articleid=o.articleid 24 where articlestatus='D elivered' and locationid=324 where articlestatus='DELIVERED' and locationid=3 25 25 }}} 26 26 … … 54 54 {{{#!sql 55 55 update orderedarticles 56 set articlestatus='P rocessed'56 set articlestatus='PROCESSED' 57 57 where oarticleid=3 58 58 }}} … … 64 64 {{{#!sql 65 65 update orders 66 set status='P rocessed'66 set status='PROCESSED' 67 67 where orderid=3 68 68 }}}