Snoopy [해커랭크/SQL] 19. Employee Names
코딩테스트/해커랭크 SQL

[해커랭크/SQL] 19. Employee Names

Sooyoon Jeong 2023. 2. 22.

 

🤔 문제 분석

1) 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

 

댓글