Im between cherry

Hackerrank | MySQL | Employee Salaries 본문

데이터분석/practice_query

Hackerrank | MySQL | Employee Salaries

meal 2020. 8. 28. 09:27

Employee Salaries

Problem

 

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

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.

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.

 

 

- Solution

SELECT name
FROM employee
WHERE salary > 2000 AND months < 10
ORDER BY employee_id ASC

 

Comments