9 lines
391 B
MySQL
9 lines
391 B
MySQL
|
/*Write a query in SQL to display the first and last name, salary, and department ID for those employees who earn more than the minimum salary of a department which ID is 40.
|
||
|
*/
|
||
|
|
||
|
SELECT first_name, last_name, salary, department_id
|
||
|
FROM employees
|
||
|
WHERE salary > ANY
|
||
|
(SELECT salary
|
||
|
FROM employees
|
||
|
WHERE department_id = 40);
|