Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

PostgreSQL Subquery: Find the name and salary of the employees who draws the same salary as the minimum salary for all departments


9. Write a SQL subquery to find all the information of the employees who draws the same salary as the minimum salary for all departments.

Sample Solution:

Code:

SELECT * 
FROM employees 
WHERE salary = (
SELECT MIN(salary) 
FROM employees);

Sample table: employees


Sample table: departments


Output:

pg_exercises=# SELECT *
pg_exercises-# FROM employees
pg_exercises-# WHERE salary = (
pg_exercises(# SELECT MIN(salary)
pg_exercises(# FROM employees);

 employee_id | first_name | last_name |     email     | phone_number | hire_date  |  job_id  | salary  | commission_pct | manager_id | department_id
-------------+------------+-----------+---------------+--------------+------------+----------+---------+----------------+------------+---------------
         132 | TJ         | Olson     | not available | 650.123.8234 | 1987-07-19 | ST_CLERK | 2100.00 |           0.00 |        121 |            50
(1 row)

Practice Online


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a SQL subquery to find the first_name, last_name and salary of the employees who draw a more salary than the employee, which the last name is Bell.
Next: Write a SQL subquery to find all the information of the employees whose salary greater than the average salary of all departments.

What is the difficulty level of this exercise?