코딩코딩코딩

[HackerRank] Employee Salaries 본문

MySQL/Problem Solving

[HackerRank] Employee Salaries

hanshow113 2022. 1. 10. 00:56

 

Answer

SELECT name
FROM employee
WHERE salary >= 2000 AND months < 10
ORDER BY employee_id;
Comments