dblabs/b.sql

5 lines
168 B
MySQL
Raw Permalink Normal View History

2024-01-25 21:55:48 +01:00
--Same as in a) but produce a sorted listing. Sort first by last name and then by first name.
2024-01-25 19:40:23 +01:00
select firstName, lastName
from Students
order by lastName, firstName