Prepare > SQL > Basic Select > Employee Names
2023. 7. 14. 19:49ㆍHackerRank-My SQL
Employee Names | HackerRank
Print employee names.
www.hackerrank.com
문제
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;
두 번째 시도
SELECT NAME FROM EMPLOYEE
ORDER BY NAME ASC;
- 똑같네..ㅇㅇ
'HackerRank-My SQL' 카테고리의 다른 글
Prepare > SQL > Advanced Select > Type of Triangle (0) | 2023.07.15 |
---|---|
Prepare > SQL > Basic Select > Employee Salaries (0) | 2023.07.14 |
Prepare > SQL > Basic Select > Weather Observation Station 12 (0) | 2023.07.13 |
Prepare > SQL > Basic Select > Weather Observation Station 11 (0) | 2023.07.13 |
Prepare > SQL > Basic Select > Weather Observation Station 10 (0) | 2023.07.13 |