I. RAJESH KUMAR (MSc, M.Tech, B.Ed, M.Th)
SQL
-- Display students in ascending order by age
SELECT * FROM Student ORDER BY age ASC;
-- Display students in descending order by name
SELECT * FROM Student ORDER BY name DESC;
No comments:
Post a Comment