0
Why an error occurs when I write a command like this?
Select * from student limit 4 oder by marks;
6 ответов
+ 1
Try this:
SELECT * FROM 'student' ORDER BY marks limit 4;
+ 1
Yaah! it works
+ 1
The ORDER BY clause goes first and then the LIMIT
The clauses have an fixed order
0
Thanks 👍
0
But I don't understand why my command is wrong
0
Did it work?