Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.

 Select Name from Employee order by Name

0 Comments