Im between cherry

Hackerrank | MySQL | Employee Names 본문

데이터분석/practice_query

Hackerrank | MySQL | Employee Names

meal 2020. 8. 28. 09:24

Employee Names

Problem

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

 

 

- solution

SELECT name
FROM employee
ORDER BY name ASC
Comments