본문 바로가기

Programming/SQL

[HackerRank] Basic Select : Employee Names (MySQL)

1. 문제 설명

문제 링크

2. 코드

SELECT name FROM Employee
ORDER BY name ASC;