알고리즘/HackerRank
[HackerRank] Employee Salaries 오라클 풀이
mndev
2024. 1. 29. 15:24
문제링크
Employee Salaries | HackerRank
Print the names of employees who earn more than $2000 per month and have worked at the company for less than 10 months.
www.hackerrank.com
코드
select name
from employee
where months < 10 and salary >= 2000
order by employee_id asc;