Then use the
select * from Student where id & gt; 50 order by id;
Or
select * from Student where id & gt; 50;
All wrong, but the following statement is right, what is the difference between them?
SELECT * FROM Student order by id> 50;
Really confused