programming-examples/sql/SubqueriesHRDatabase/Write a query in SQL to display the first and last name, salary, and department ID for those employees who earn less than the minimum salary of a department which ID is 70.sql

10 lines
393 B
MySQL
Raw Normal View History

2019-11-18 14:05:53 +01:00
/*Write a query in SQL to display the first and last name, salary, and department ID for those employees who earn less than
the minimum salary of a department which ID is 70.*/
SELECT first_name, last_name, salary, department_id
FROM employees
WHERE salary < ALL
(SELECT salary
FROM employees
WHERE department_id = 70);