your image

SQL | WITH clause - GeeksforGeeks

.geeksforgeeks.org
Related Topic
:- SQL sql server

SQL | WITH clause

  • Difficulty Level : Medium
  • Last Updated : 13 Aug, 2021

The SQL WITH clause was introduced by Oracle in the Oracle 9i release 2 database. The SQL WITH clause allows you to give a sub-query block a name (a process also called sub-query refactoring), which can be referenced in several places within the main SQL query. 
 

  • The clause is used for defining a temporary relation such that the output of this temporary relation is available and is used by the query that is associated with the WITH clause.
  • Queries that have an associated WITH clause can also be written using nested sub-queries but doing so add more complexity to read/debug the SQL query.
  • WITH clause is not supported by all database system.
  • The name assigned to the sub-query is treated as though it was an inline view or table
  • The SQL WITH clause was introduced by Oracle in the Oracle 9i release 2 database.

Syntax: 

WITH temporaryTable (averageValue) as(SELECT avg(Attr1)FROM Table)SELECT Attr1FROM Table, temporaryTableWHERE Table.Attr1 > temporaryTable.averageValue;

 

In this query, WITH clause is used to define a temporary relation temporaryTable that has only 1 attribute averageValue. averageValue holds the average value of column Attr1 described in relation Table. The SELECT statement that follows the WITH clause will produce only those tuples where the value of Attr1 in relation Table is greater than the average value obtained from the WITH clause statement. 

Note: When a query with a WITH clause is executed, first the query mentioned within the  clause is evaluated and the output of this evaluation is stored in a temporary relation. Following this, the main query associated with the WITH clause is finally executed that would use the temporary relation produced. 
 

 

 

 

Queries

Example 1:  Find all the employee whose salary is more than the average salary of all employees. 
Name of the relation: Employee 
 

EmployeeIDNameSalary100011Smith50000100022Bill94000100027Sam70550100845Walden80000115585Erik600001100070Kate69000

SQL Query: 

WITH temporaryTable(averageValue) as(SELECT avg(Salary)from Employee)SELECT EmployeeID,Name, Salary        FROM Employee, temporaryTable        WHERE Employee.Salary > temporaryTable.averageValue;

Output: 
 

EmployeeIDNameSalary100022Bill94000100845Walden80000

Explanation: The average salary of all employees is 70591. Therefore, all employees whose salary is more than the obtained average lies in the output relation. 
 

Example 2: Find all the airlines where the total salary of all pilots in that airline is more than the average of total salary of all pilots in the database. 

Name of the relation: Pilot 
 

EmployeeIDAirlineNameSalary70007Airbus 380Kim6000070002BoeingLaura2000010027Airbus 380Will8005010778Airbus 380Warren80780115585BoeingSmith25000114070Airbus 380Katy78000

SQL Query: 

WITH totalSalary(Airline, total) as(SELECT Airline, sum(Salary)FROM PilotGROUP BY Airline),airlineAverage(avgSalary) as    (SELECT avg(Salary)FROM Pilot )SELECT AirlineFROM totalSalary, airlineAverageWHERE totalSalary.total > airlineAverage.avgSalary;

Output: 
 

AirlineAirbus 380

Explanation: The total salary of all pilots of Airbus 380 = 298,830 and that of Boeing = 45000. Average salary of all pilots in the table Pilot = 57305. Since only the total salary of all pilots of Airbus 380 is greater than the average salary obtained, so Airbus 380 lies in the output relation. 

Important Points: 

  • The SQL WITH clause is good when used with complex SQL statements rather than simple ones
  • It also allows you to break down complex SQL queries into smaller ones which make it easy for debugging and processing the complex queries.
  • The SQL WITH clause is basically a drop-in replacement to the normal sub-query.

This article is contributed by Mayank Kumar. If you like GeeksforGeeks and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks. 

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Attention reader! Don’t stop learning now. Learn SQL for interviews using SQL Course  by GeeksforGeeks.

Comments