143k views
19 votes
From the order _details table-product_id, quantity, item_price where the quantity is greater than 3 and sorted by price

SQL problem?

1 Answer

2 votes

Answer:

SELECT product_id, quantity, item_price

FROM order_details

WHERE quantity > 3

ORDER BY item_price

Step-by-step explanation:

User Faramarz Qoshchi
by
4.3k points