SQL
1 Introduction to SQL
1.1 Overview of SQL
1.2 History and Evolution of SQL
1.3 Importance of SQL in Data Management
2 SQL Basics
2.1 SQL Syntax and Structure
2.2 Data Types in SQL
2.3 SQL Statements: SELECT, INSERT, UPDATE, DELETE
2.4 SQL Clauses: WHERE, ORDER BY, GROUP BY, HAVING
3 Working with Databases
3.1 Creating and Managing Databases
3.2 Database Design Principles
3.3 Normalization in Database Design
3.4 Denormalization for Performance
4 Tables and Relationships
4.1 Creating and Modifying Tables
4.2 Primary and Foreign Keys
4.3 Relationships: One-to-One, One-to-Many, Many-to-Many
4.4 Joins: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN
5 Advanced SQL Queries
5.1 Subqueries and Nested Queries
5.2 Common Table Expressions (CTEs)
5.3 Window Functions
5.4 Pivoting and Unpivoting Data
6 Data Manipulation and Aggregation
6.1 Aggregate Functions: SUM, COUNT, AVG, MIN, MAX
6.2 Grouping and Filtering Aggregated Data
6.3 Handling NULL Values
6.4 Working with Dates and Times
7 Indexing and Performance Optimization
7.1 Introduction to Indexes
7.2 Types of Indexes: Clustered, Non-Clustered, Composite
7.3 Indexing Strategies for Performance
7.4 Query Optimization Techniques
8 Transactions and Concurrency
8.1 Introduction to Transactions
8.2 ACID Properties
8.3 Transaction Isolation Levels
8.4 Handling Deadlocks and Concurrency Issues
9 Stored Procedures and Functions
9.1 Creating and Executing Stored Procedures
9.2 User-Defined Functions
9.3 Control Structures in Stored Procedures
9.4 Error Handling in Stored Procedures
10 Triggers and Events
10.1 Introduction to Triggers
10.2 Types of Triggers: BEFORE, AFTER, INSTEAD OF
10.3 Creating and Managing Triggers
10.4 Event Scheduling in SQL
11 Views and Materialized Views
11.1 Creating and Managing Views
11.2 Uses and Benefits of Views
11.3 Materialized Views and Their Use Cases
11.4 Updating and Refreshing Views
12 Security and Access Control
12.1 User Authentication and Authorization
12.2 Role-Based Access Control
12.3 Granting and Revoking Privileges
12.4 Securing Sensitive Data
13 SQL Best Practices and Standards
13.1 Writing Efficient SQL Queries
13.2 Naming Conventions and Standards
13.3 Documentation and Code Comments
13.4 Version Control for SQL Scripts
14 SQL in Real-World Applications
14.1 Integrating SQL with Programming Languages
14.2 SQL in Data Warehousing
14.3 SQL in Big Data Environments
14.4 SQL in Cloud Databases
15 Exam Preparation
15.1 Overview of the Exam Structure
15.2 Sample Questions and Practice Tests
15.3 Time Management Strategies
15.4 Review and Revision Techniques
5 Advanced SQL Queries Explained

Advanced SQL Queries Explained

1. Subqueries

Subqueries, also known as nested queries, are queries embedded within another query. They are used to retrieve data that will be used in the main query as a condition to further restrict the data to be retrieved. Subqueries can be used in the SELECT, FROM, WHERE, and HAVING clauses.

Example:

SELECT ProductName
FROM Products
WHERE CategoryID = (SELECT CategoryID FROM Categories WHERE CategoryName = 'Electronics');
    

In this example, the subquery retrieves the CategoryID for the category named 'Electronics', and the main query uses this result to find all products in that category.

2. Common Table Expressions (CTEs)

Common Table Expressions (CTEs) are temporary result sets that you can reference within a SELECT, INSERT, UPDATE, or DELETE statement. They are defined using the WITH clause and can be used to simplify complex queries and make them more readable.

Example:

WITH SalesCTE AS (
    SELECT ProductID, SUM(Quantity) AS TotalSales
    FROM OrderDetails
    GROUP BY ProductID
)
SELECT ProductName, TotalSales
FROM Products
JOIN SalesCTE ON Products.ProductID = SalesCTE.ProductID
ORDER BY TotalSales DESC;
    

Here, the CTE named SalesCTE calculates the total sales for each product, and the main query uses this result to join with the Products table and order the products by their total sales.

3. Window Functions

Window functions perform calculations across a set of table rows that are somehow related to the current row. Unlike aggregate functions, window functions do not cause rows to become grouped into a single output row. Instead, the rows retain their separate identities.

Example:

SELECT ProductName, Price,
       RANK() OVER (ORDER BY Price DESC) AS PriceRank
FROM Products;
    

In this example, the RANK() window function assigns a rank to each product based on its price, with the most expensive product getting the highest rank.

4. Recursive Queries

Recursive queries are used to query hierarchical data structures, such as organizational charts or file systems. They use a common table expression (CTE) with a recursive part that references the CTE itself.

Example:

WITH RECURSIVE EmployeeHierarchy AS (
    SELECT EmployeeID, ManagerID, EmployeeName
    FROM Employees
    WHERE ManagerID IS NULL
    UNION ALL
    SELECT e.EmployeeID, e.ManagerID, e.EmployeeName
    FROM Employees e
    INNER JOIN EmployeeHierarchy eh ON e.ManagerID = eh.EmployeeID
)
SELECT * FROM EmployeeHierarchy;
    

This query recursively retrieves all employees in an organizational hierarchy, starting from the top-level manager (where ManagerID is NULL) and moving down the hierarchy.

5. PIVOT and UNPIVOT

The PIVOT operator is used to rotate rows into columns, while the UNPIVOT operator does the opposite, rotating columns into rows. These operators are useful for transforming data for reporting and analysis.

Example of PIVOT:

SELECT 'TotalSales' AS TotalSales, [1], [2], [3]
FROM (
    SELECT ProductID, Quantity
    FROM OrderDetails
) AS SourceTable
PIVOT (
    SUM(Quantity) FOR ProductID IN ([1], [2], [3])
) AS PivotTable;
    

In this example, the PIVOT operator transforms the rows of ProductID into columns, with the sum of quantities for each product displayed in the respective columns.

Example of UNPIVOT:

SELECT ProductID, Quantity
FROM (
    SELECT [1], [2], [3]
    FROM PivotTable
) AS SourceTable
UNPIVOT (
    Quantity FOR ProductID IN ([1], [2], [3])
) AS UnpivotTable;
    

Here, the UNPIVOT operator transforms the columns of ProductID back into rows, with the quantities displayed in the respective rows.