5 lines
No EOL
168 B
SQL
5 lines
No EOL
168 B
SQL
--Same as in a) but produce a sorted listing. Sort first by last name and then by first name.
|
|
|
|
select firstName, lastName
|
|
from Students
|
|
order by lastName, firstName |