SESSION NAME: Advance Select - 2
QUESTION NAME: Employee Names TABLE DESCRIPTION: Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.CODE: select NAME from EMPLOYEE order by NAME;
0 Comments