-
Notifications
You must be signed in to change notification settings - Fork 0
/
20_employee_salaries.sql
59 lines (53 loc) · 1.94 KB
/
20_employee_salaries.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
Employee Salaries
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 months.
Sort your result by ascending employee_id.
- Input Format
The Employee table containing employee data for a company is described as follows:
+-------------+----------+
| Column | Type |
+-------------+----------+
| employee_id | Integer |
| name | String |
| months | Integer |
| salary | Integer |
+-------------+----------+
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 their monthly salary.
+-------------+----------+--------+--------+
| employee_id | name | months | salary |
+-------------+----------+--------+--------+
| 12228 | Rose | 15 | 1968 |
| 33645 | Angela | 1 | 33443 |
| 45692 | Frank | 17 | 1608 |
| 56118 | Patrick | 7 | 1345 |
| 59725 | Lisa | 11 | 2330 |
| 74197 | Kimberly | 16 | 4372 |
| 78454 | Bonnie | 8 | 1771 |
| 83565 | Michael | 6 | 2017 |
| 98607 | Todd | 5 | 3396 |
| 99989 | Joe | 9 | 3573 |
+-------------+----------+--------+--------+
- Sample Output
Angela
Michael
Todd
Joe
- Explanation
Angela has been an employee for 1 month and earns 3443 per month.
Michael has been an employee for 6 months and earns 2017 per month.
Todd has been an employee for 5 months and earns 3396 per month.
Joe has been an employee for 9 months and earns 3573 per month.
We order our output by ascending employee_id.
*/
SELECT
name
FROM
employee
WHERE
salary > 2000 AND
months < 10
ORDER BY
employee_id
;