IT/SQL
[해커랭크] Employee Salaries
김보통김보름
2023. 3. 21. 23:24
728x90
반응형
문제링크 : https://www.hackerrank.com/challenges/salary-of-employees/problem?isFullScreen=true
❓문제
Write a query that prints a list of employee names (i.e.: the name attribute) for employees in Employee having a salary greater than $2000 per month who have been employees for less than 10 months. Sort your result by ascending employee_id.
(Employee 테이블에서 name을 뽑아라. 일한지 10개월 미만의 월급이 $2000가 넘는 직원. employee_id로 오름차순.)
Input Format
The Employee table containing employee data for a company is described as follows:

where employee_id is an employee's ID number, name is their name, months is the total number of months they've been working for the company, and salary is the their monthly salary.
Sample Input

❗답
SELECT name
FROM Employee
WHERE salary > 2000 AND
months < 10
ORDER BY employee_id
🤔풀이
문제 순서대로 작성하면 된다!
728x90