Changes between Version 12 and Version 13 of ImportantUseCase0
- Timestamp:
- 02/05/24 15:27:50 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase0
v12 v13 40 40 [[Image(4-1.jpg)]] 41 41 42 Прикажување на категориите 43 {{{ 44 select category.category_name from category 45 }}} 46 47 Прикажување на најпродаваните производи (Hottest products) 48 49 {{{ 50 select product.product_name 51 from order_table 52 left join order_table_contains_product on order_table_contains_product.order_id = order_table.order_id 53 left join product on product.product_id = order_table_contains_product.product_id 54 where order_table.order_status = 'Delivered' 55 and order_table.order_date between now() - interval '3 months' and now() 56 }}} 57 42 58 === Чекор 5 43 За селектираниот производ се прикажуваат сите детали во врска со производот .59 За селектираниот производ се прикажуваат сите детали во врска со производот, како и копче Add to cart 44 60 45 61 [[Image(5.1.jpg)]] 62 63 {{{ 64 insert into order_table(order_status ,order_date ,customer_id) 65 values ('Created',now(),8) 66 }}} 67 68 {{{ 69 insert into order_table_contains_product (order_id , product_id , quantity) 70 values (4,1,1) 71 }}} 46 72 47 73 === Чекор 6