MySQL Order By Exercise
Write a MySQL statement to select data of all departments in ascending order by name and age
Suppose the table is -
+----+--------------+------------+-----+
| id | name | department | age |
+----+--------------+------------+-----+
| 1 | Maria Gloria | CS | 22 |
| 2 | John Smith | IT | 23 |
| 3 | Gal Rao | CS | 22 |
| 4 | Jakey Smith | EC | 24 |
| 5 | Rama Saho | IT | 22 |
| 6 | Maria Gaga | EC | 23 |
+----+--------------+------------+-----+
Solution
The following statement returns student data of all departments in ascending order by name and age.
need an explanation for this answer? contact us directly to get an explanation for this answer