- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL Correlated Subquery
A correlated subquery is a type of subquery that references columns from the outer query. Unlike a non-correlated subquery, which can be executed independently, a correlated subquery must be executed for each row processed by the outer query. This means that for every row in the outer query, the subquery is re-executed, using values from the outer query's row.
Syntax of Correlated Subquery
SELECT column1, column2, ...
FROM outer_table
WHERE column_name operator (SELECT column_name
FROM inner_table
WHERE outer_table.column_name = inner_table.column_name);
- outer_table: The main table in the outer query.
- inner_table: The table in the inner (correlated) query.
- operator: Comparison operators such as
=
,>
,<
,IN
, etc.
Example of Correlated Subquery
Consider the following tables:
Employees Table:
Departments Table:
Correlated Subquery Example
Find the employees whose salary is greater than the average salary of employees in the same department.
SELECT e.name, e.salary
FROM employees e
WHERE e.salary > (SELECT AVG(e2.salary)
FROM employees e2
WHERE e2.department_id = e.department_id);
Explanation:
- The inner query calculates the average salary for each department. It uses
e.department_id
from the outer query to find the department for each employee. - The outer query retrieves the employees whose salary is greater than the average salary of their own department.
Output:
How Correlated Subqueries Work
- The outer query processes one row at a time.
- For each row in the outer query, the correlated subquery is executed, using values from that specific row.
- The result of the subquery is then used by the outer query to filter the data.
Correlated Subquery with IN
Another common use of correlated subqueries is with the IN
operator to match rows from the outer query with a list of values produced by the inner query.
SELECT e.name
FROM employees e
WHERE e.department_id IN (SELECT d.department_id
FROM departments d
WHERE d.department_name = 'IT');
Explanation:
- The inner query selects the department IDs of departments that are named "IT."
- The outer query selects all employees whose
department_id
matches one of those department IDs.
Key Points
- A correlated subquery references columns from the outer query.
- It must be executed once for each row of the outer query.
- Common operators used in correlated subqueries include
=
,IN
,ANY
,ALL
, etc. - The subquery is evaluated for each row, making it more computationally expensive than a non-correlated subquery.
Summary
A correlated subquery is a subquery that depends on values from the outer query for its execution. It is evaluated for each row processed by the outer query, which makes it suitable for operations where comparison between rows of the outer query and related values in the subquery is required.