(Choose 1 answer)
You want to retrieve a list of employees in alphabetical order of Lastname from the Employees table. Which SQL statement should you use?
A. SELECT * FROM Employees ORDER BY Lastname;
B. SELECT * FROM Employees SORT BY Lastname;
C. SELECT * FROM Employees GROUP BY Lastname;
D. SELECT * FROM Employees ORDER BY Lastname DESC;