순간을 기록으로

[MySQL] Employee Names 본문

Problem Solving

[MySQL] Employee Names

luminous13 2022. 3. 29. 13:47

문제

- 직원 이름(name)을 조회하세요
- 조회 결과는 이름(name)을 기준으로 알파벳 순서로 정렬(order)합니다.

풀이

select name
from employee
order by name;

 


출처: https://www.hackerrank.com/challenges/name-of-employees/problem?isFullScreen=true 

 

Employee Names | HackerRank

Print employee names.

www.hackerrank.com

 

Comments