A subquery, also known as a subselect or inner query, is a query nested within another query in SQL. A subquery can be used within various SQL statements, such as SELECT, INSERT, UPDATE, or DELETE, to retrieve or manipulate data based on the results of the inner query. Subqueries are a fundamental concept in SQL, and they help you perform complex and conditional data retrieval or manipulation operations.

There are two main categories of subqueries based on where they are used within SQL statements:

  1. Single-Row Subquery:

  2. Multi-Row Subquery:

Subqueries can also be categorized based on their purpose:

  1. Scalar Subquery:

  2. Correlated Subquery:

Subqueries are a powerful feature in SQL, allowing you to perform complex data manipulations and conditional operations by nesting queries within each other. They are essential for writing efficient and expressive SQL statements

Single-Row Subquery:

In a single-row subquery, the inner query returns a single value or row of values, and it is used within a larger query that expects a single value or row. Here are some key points and examples:

  1. Comparison with a Single Value:

  2. Calculations with a Single Value:

Multi-Row Subquery:

In a multi-row subquery, the inner query returns multiple rows of values, and it is used within a larger query that can handle multiple rows. Here are some key points and examples:

  1. IN Operator:

  2. EXISTS Operator:

Scalar Subquery: