HackerRank MySQL - Employee Names
Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.
- /*
- Enter your query here and follow these instructions:
- 1. Please append a semicolon ";" at the end of the query and enter your query in a single line to avoid error.
- 2. The AS keyword causes errors, so follow this convention: "Select t.Field From table1 t" instead of "select t.Field From table1 AS t"
- 3. Type your code immediately after comment. Don't leave any blank line.
- */
- SELECT NAME
- FROM EMPLOYEE
- ORDER BY NAME;