Changes between Version 4 and Version 5 of ImportantUseCase1


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

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantUseCase1

    v4 v5  
    1111[[Image(s1.jpg)]]
    1212
     13{{{
     14select product.product_image,
     15product.product_name,
     16product.product_description,
     17product.product_price,
     18review.review_rating,
     19review.review_description
     20from product
     21join review on review.product_id = product.product_id
     22where product.product_id = 1
     23}}}
     24
    1325=== Чекор 2
    1426Корисникот има можност да додаде критика со клик на копчето Review
     
    1830
    1931[[Image(review.jpg)]]
     32
     33{{{
     34select product.product_image,
     35product.product_name
     36from product
     37where product.product_id = 1
     38}}}
     39
     40Внесувањето на критиката во базата.
     41{{{
     42insert into review (review_rating, review_description, customer_id, product_id) values
     43(5, 'Very good for the price!', 8, 1),
     44}}}
     45
    2046
    2147=== Чекор 4