Changes between Version 15 and Version 16 of ImportantUseCase0
- Timestamp:
- 02/05/24 16:00:40 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase0
v15 v16 93 93 [[Image(9-1.jpg)]] 94 94 95 {{{ 96 select order_table.order_id, 97 order_table.order_date, 98 product.product_image, 99 product.product_name, 100 order_table_contains_product.quantity, 101 order_table.order_status 102 103 from order_table 104 join order_table_contains_product on order_table_contains_product.order_id = order_table.order_id 105 join product on product.product_id = order_table_contains_product.product_id 106 107 where order_table.customer_id = 8 108 }}} 95 109 96 110