SQL SORTING and FILTERING on HR Database: Display the first and last name, email, salary and manager ID of employees whose managers are hold the ID 120, 103 or 145
SQL SORTING and FILTERING on HR Database: Exercise-16 with Solution
16. From the following table, write a SQL query to find those employees whose managers hold the ID 120 or 103 or 145. Return first name, last name, email, salary and manager ID.
Sample table : employees
Sample Solution:
SELECT first_name, last_name, email,
salary, manager_id
FROM employees
WHERE manager_id IN (120 , 103 , 145);
Sample Output:
first_name | last_name | email | salary | manager_id -------------+-------------+----------+----------+------------ Bruce | Ernst | BERNST | 6000.00 | 103 David | Austin | DAUSTIN | 4800.00 | 103 Valli | Pataballa | VPATABAL | 4800.00 | 103 Diana | Lorentz | DLORENTZ | 4200.00 | 103 Julia | Nayer | JNAYER | 3200.00 | 120 Irene | Mikkilineni | IMIKKILI | 2700.00 | 120 James | Landry | JLANDRY | 2400.00 | 120 Steven | Markle | SMARKLE | 2200.00 | 120 Peter | Tucker | PTUCKER | 10000.00 | 145 David | Bernstein | DBERNSTE | 9500.00 | 145 Peter | Hall | PHALL | 9000.00 | 145 Christopher | Olsen | COLSEN | 8000.00 | 145 Nanette | Cambrault | NCAMBRAU | 7500.00 | 145 Oliver | Tuvault | OTUVAULT | 7000.00 | 145 Winston | Taylor | WTAYLOR | 3200.00 | 120 Jean | Fleaur | JFLEAUR | 3100.00 | 120 Martha | Sullivan | MSULLIVA | 2500.00 | 120 Girard | Geoni | GGEONI | 2800.00 | 120 (18 rows)
Relational Algebra Expression:
Relational Algebra Tree:
Practice Online

Query Visualization:
Duration:

Rows:

Cost:

Contribute your code and comments through Disqus.
Previous: From the following table, write a SQL query to find those employees who were hired before June 21st, 2002. Return all fields.
Next: From the following table, write a SQL query to find those employees whose first name contains the letters D, S, or N. Sort the result-set in descending order by salary. Return all fields.
Test your Programming skills with w3resource's quiz.
What is the difficulty level of this exercise?
SQL: Tips of the Day
MySQL export schema without data
mysqldump -h yourhostnameorIP -u root -p --no-data dbname > schema.sql
Ref: https://bit.ly/3xzB9dS
- New Content published on w3resource:
- HTML-CSS Practical: Exercises, Practice, Solution
- Java Regular Expression: Exercises, Practice, Solution
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework