본문 바로가기

코딩일기

SQL 코드카타 147 - Salaries

https://www.hackerrank.com/challenges/salary-of-employees/problem?isFullScreen=true

 

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

 

 

Column Type
employee_id Integer
name String
months Integer
salary Integer

 

Employee 테이블:

  • employee_id : 테이블의 고유 키
  • name : 직원의 이름
  • months : 근무한 개월 수
  • salary : 급여

급여가 2000 이상이고 고용된 지 10개월 미만인 직원들의 이름(name 속성)을 조회하는 쿼리를 작성하세요. 결과는 employee_id를 기준으로 오름차순으로 정렬하세요.

select name
from Employee
where months < 10 and salary >= 2000