Changes between Version 15 and Version 16 of ImportantUseCase0


Ignore:
Timestamp:
02/05/24 16:00:40 (8 months ago)
Author:
201171
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase0

    v15 v16  
    9393[[Image(9-1.jpg)]]
    9494
     95{{{
     96select order_table.order_id,
     97order_table.order_date,
     98product.product_image,
     99product.product_name,
     100order_table_contains_product.quantity,
     101order_table.order_status
     102
     103from order_table
     104join order_table_contains_product on order_table_contains_product.order_id = order_table.order_id
     105join product on product.product_id = order_table_contains_product.product_id
     106
     107where order_table.customer_id = 8
     108}}}
    95109
    96110