Posts Employee Salaries
Post
Cancel

Employee Salaries

Employee Salaries

  • URL : https://www.hackerrank.com/challenges/salary-of-employees/problem
  • 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.
  • MySQL Solution
1
2
3
4
select name
from Employee
where salary >= 2000 and months < 10
order by employee_id asc
This post is licensed under CC BY 4.0 by the author.