0
Please who can help me to fixed this codes
SELECT * FROM Orders WHERE Price = 400 AND (Age > 40 OR Distance < 10) ORDER BY Price;
5 Answers
+ 3
Thanks I fixed it
SELECT * FROM Orders
WHERE (Age > 40 OR Distance < 10)
AND Price > 400
ORDER BY Price;
+ 1
Please fixed it for me
+ 1
Okay
SELECT * FROM Orders
WHERE Price > 400
AND Age > 40 OR Distance < 10
ORDER BY Price;
but it can't be fixed
0
Can you please describe your problem a little bit better...?
0
And Expected output is
Adam 38, 2, 500
Lisa 44, 13, 750