0
You are managing a delivery office and need to prioritize your orders. Order is considered a high priority order if - the purcha
SELECT * FROM orders WHERE (age >= 40 OR distance < 10) AND price >= 400; it don't show expected result in code coach help me!
3 Réponses
+ 4
Order by *something*;
+ 1
SELECT * FROM orders
WHERE (age > 40 OR distance < 10)
AND price > 400 ORDER BY price;SELECT * FROM orders
WHERE (age > 40 OR distance < 10)
AND price > 400 ORDER BY price;
now i have solved the challenge
+ 1
SELECT * FROM orders
WHERE (age > 40 OR distance < 10)
AND price > 400 ORDER BY price;