티스토리

mun dev
검색하기

[HackerRank] Employee Salaries 오라클 풀이

알고리즘/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;

블로그 정보

mun dev

Software Developer👩🏻‍💻

프로필 사진
문의안내
  • 티스토리
  • 로그인
  • 고객센터

티스토리는 카카오에서 사랑을 담아 만듭니다.

© Kakao Corp.