Changes between Version 8 and Version 9 of ImportantUseCase2
- Timestamp:
- 02/05/24 16:18:18 (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantUseCase2
v8 v9 11 11 [[Image(1-1.jpg)]] 12 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 13 29 === Чекор 2 14 30 Корисникот се најаваува користејќи ја формата за најава. 15 31 16 32 [[Image(a2.jpg)]] 33 34 Процес на валидација на внесените податоци. 35 36 {{{ 37 select username, password from user_table 38 where inputUsername=username and inputPassword=password 39 }}} 40 17 41 18 42 === Чекор 3