Changes between Version 17 and Version 18 of ImportantUseCase0
- Timestamp:
- 02/05/24 16:16:50 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase0
v17 v18 10 10 11 11 [[Image(1-1.jpg)]] 12 13 Прикажување на категориите 14 {{{ 15 select category.category_name from category 16 }}} 17 18 Прикажување на најпродаваните производи (Hottest products) 19 20 {{{ 21 select product.product_name 22 from order_table 23 left join order_table_contains_product on order_table_contains_product.order_id = order_table.order_id 24 left join product on product.product_id = order_table_contains_product.product_id 25 where order_table.order_status = 'Delivered' 26 and order_table.order_date between now() - interval '3 months' and now() 27 }}} 28 12 29 13 30 === Чекор 2 … … 40 57 [[Image(4-1.jpg)]] 41 58 42 Прикажување на категориите 59 Прикажување на категориите и подкатегориите на производот 43 60 {{{ 44 select category.category_name from category 61 select category.category_name, 62 subcategory.subcategory_name 63 from category 64 join subcategory on subcategory.category_id = category.category_id 65 where category.category_id = 1 45 66 }}} 46 67