Subqueries in SQL

This SQL cheat sheet explains how to nest queries for powerful data filtering and manipulation within a single statement.

56. Single-row Subquery: Returns One Row of Result

SELECT first_name, last_name
FROM employees
WHERE salary = (SELECT MAX(salary) FROM employees);

In this example, the subquery (SELECT MAX(salary) FROM employees) returns a single row containing the maximum salary, and it’s used to filter employees who have the maximum salary.

57. Multiple-row Subquery: Returns Multiple Rows of Result

SELECT department_name
FROM departments
WHERE department_id IN (SELECT department_id FROM employees);

In this example, the subquery (SELECT department_id FROM employees) returns multiple rows containing department IDs, and it’s used to filter department names based on those IDs.

58. Correlated Subquery: References a Column from the Outer Query

SELECT first_name, last_name
FROM employees e
WHERE salary > (SELECT AVG(salary) FROM employees WHERE department = e.department);

In this example, the subquery (SELECT AVG(salary) FROM employees WHERE department = e.department) is correlated with the outer query by referencing the department column from the outer query. It calculates the average salary for each department and is used to filter employees whose salary is greater than the average salary of their respective department.

59. Nested Subquery: A Subquery Inside Another Subquery

SELECT first_name, last_name
FROM employees
WHERE department_id IN (
    SELECT department_id
    FROM departments
    WHERE department_name = 'IT'
);

In this example, the subquery (SELECT department_id FROM departments WHERE department_name = ‘IT’) is nested within the outer query. It retrieves the department ID for the IT department, which is then used in the outer query to filter employees belonging to the IT department.

SQL Cheat Sheet

In this article, we will explore the ultimate SQL cheat sheet with the PDF, covering a wide range of SQL commands, Joins in SQL, CRUD Operations, SQL Trigger, SQL Transactions, and advanced topics to help master SQL effectively.

SQL (Structured Query Language) is a Query language used for managing and manipulating relational databases databases. It allows users to interact with databases. SQL allows users to perform various tasks such as querying data, updating data, inserting new records, deleting records, creating and modifying database schemas, and managing permissions.

SQL Cheat Sheet

Table of Content

  • Create a Database in SQL
  • Creating Data in SQL
  • Reading/Querying Data in SQL
  • Updating/Manipulating Data in SQL
  • Deleting Data in SQL
  • Filtering Data in SQL
  • SQL Operator
  • Aggregation Data in SQL
  • Constraints in SQL
  • Joins in SQL
  • SQL Functions
  • Subqueries in SQL
  • Views in SQL
  • Indexes in SQL
  • Transactions in SQL
  • Advanced Mixed Data in SQL
  • SQL Cheat Sheet PDF

Similar Reads

Create a Database in SQL

Explore this section to get hands on all the cheat sheet that help you in order to create a database in SQL....

Creating Data in SQL

Here in this SQL cheat sheet we have listed down all the cheat sheet that help to create, insert, alter data in table....

Reading/Querying Data in SQL

Explore this section to get the cheat sheet on how to use select, distinct and other querying data in SQL....

Updating/Manipulating Data in SQL

Get a cheat sheet on how to update or manipulate data in SQL by exploring this section....

Deleting Data in SQL

17. DELETE: Remove Records From A Table...

Filtering Data in SQL

18. WHERE: Filter Rows Based On Specified Conditions...

SQL Operator

Here in this section we have added a cheat sheet for SQL Operators. So, explore and learn how to use AND, OR, NOT and others oprtators....

Aggregation Data in SQL

Get an hands in aggregation data in SQL. Here you will find cheat sheet for how to count numbers, sum of numbers and more....

Constraints in SQL

Constraints in SQL act as data quality guardrails, enforcing rules to ensure accuracy, consistency, and integrity within your database tables....

Joins in SQL

Explore different join types to seamlessly merge data from multiple tables in your SQL queries....

SQL Functions

In this section we have compiled SQL cheat sheet for SQL functions. It is used for common tasks like aggregation, filtering, date/time manipulation, and more!...

Subqueries in SQL

This SQL cheat sheet explains how to nest queries for powerful data filtering and manipulation within a single statement....

Views in SQL

Here in this SQL cheat sheet unveils how to create virtual tables based on existing data for streamlined access....

Indexes in SQL

Speed up your SQL queries with our Indexes Cheat Sheet! Learn how to create and optimize indexes to dramatically improve database performance....

Transactions in SQL

Learn how to manage groups of database operations as a single unit for reliable data updates....

Advanced Mixed Data in SQL

In the last we have complied all the imprtant queries under the one advanced SQL cheat sheet....

SQL Cheat Sheet PDF

...

Conclusion

SQL is a powerful and versatile language for managing and manipulating relational databases. This comprehensive cheat sheet covers a wide array of SQL commands and concepts, ranging from database creation to advanced topics like stored procedures, triggers, and user-defined functions. this cheat sheet serves as a valuable resource for both beginners looking to learn SQL fundamentals and experienced users seeking to enhance their proficiency and efficiency in database management and manipulation....