Pages

Men

rh

7/11/2013

Recursive Queries using Common Table Expressions (CTE) in SQL Server


Problem
In SQL Server 2000, you need to implement recursive queries to retrieve data which is presented in a hierarchical format. We normally resort to implementing views, cursors or derived tables and perform queries against them. The problem arises when the hierarchy level increases as SQL Server is limited to 32 levels of recursion. We need a better way to implement recursive queries in SQL Server 2005. How do we do it?



Solution
Common Table Expression (CTE) was introduced in SQL Server 2005 and can be thought of as a temporary result set that is defined within the execution scope of a single SELECT, INSERT, UPDATE, DELETE, or CREATE VIEW statement. You can think of CTE as an improved version of derived tables that more closely resemble a non-persistent type of view. Look at CTEs as your derived tables in SQL Server 2000. A CTE can be used in many of the same ways you use a derived table. 

CTEs can also contain references to themselves. This allows the developer to write complex queries simpler. CTEs can also be used in place of views. The use of CTEs provides two main advantages. One is that queries with derived table definitions become more simple and readable. While traditional T-SQL constructs that are used to work with derived tables normally requires a separate definition for the derived data such as a temporary table or a table-valued function, using CTEs make it easier to see the definition of the derived table with the code that uses it. The other thing is that CTEs significantly reduces the amount of code required for a query that traverses recursive hierarchies.


To understand what a CTE is all about, let's first take a look at the syntax to create it in SQL Server 2005.


Syntax
In general form a recursive CTE has the following syntax:


WITH cte_alias (column_aliasesAS  ( cte_query_definition   --initialization UNION ALL cte_query_definition2 --recursive execution SELECT FROM cte_alias 

You provide the CTE with an alias and an optional list of aliases for its result columns following the keyword WITH which usually defines the derived table based on the query definition; write the body of the CTE; and refer to it from the outer query.

To put this in the right perspective, let’s come up with a simple example which uses recursion. We'll look at the Employees table in the Northwind database and see that a particular employee reports to another employee. One question we can come up with is, “Who reports to whom?” The Employees table is designed in such a way that the ReportsTo column is a foreign key field that refers to the primary key field EmployeeID. Thus, we can create a query to answer our question. A sample query using CTE will look something like this.

WITH Managers AS ( --initialization SELECT EmployeeIDLastNameReportsTo 
FROM Employees
WHERE ReportsTo IS NULL UNION ALL --recursive execution SELECT e.employeeID,e.LastNamee.ReportsTo
FROM Employees e INNER JOIN Managers m 
ON e.ReportsTo m.employeeID
) SELECT FROM Managers 

Code Walkthrough
  1. The recursive CTE, Managers, defines an initialization query and a recursive execution query
  2. The initialization query returns the base result and is the highest level in the hierarchy.  This is identified by the ReportsTo value of NULL, which means that the particular Employee does not report to anybody.  Depending on how the table is designed, the value can be anything as long as it represents the highest level in the hierarchy
  3. The recursive execution query is then joined to the initialization query using the UNION ALL keyword.  The result set is based on the direct subordinate as returned by the initialization query, which then appears as the next level in the hierarchy. Recursion occurs because of the query referencing the CTE itself based on the Employee in the Managers CTE as input. The join then returns the employees who have their managers as the previous record returned by the recursive query.  The recursive query is repeated until it returns an empty result set.
  4. The final result set is returned by querying the Managers CTE 
The sample query contains the elements that a recursive CTE must contain. What’s more is that the code is a lot more readable. This enables the developers to write complex queries with ease.

You can also use a query hint to stop a statement after a defined number of loops. This can stop a CTE from going into an infinite loop on a poorly coded statement. You do this by including the MAXRECURSION keyword in the SELECT query referring to the CTE. To use it in the previous example

SELECT FROM Managers OPTION (MAXRECURSION 4

To create a similar yet non-recursive query that produces the same result in SQL Server 2000, you might come up with something similar to this code:


DECLARE @rowsAdded INT
--table variable to hold accumulated results DECLARE @managers TABLE --initialize @managers who do not have managers
   
(EmpID INTMgrID INTprocessed INT DEFAULT(0))
INSERT @managers  SELECT EmployeeIDReportsTo
FROM Employees 
WHERE ReportsTo IS NULL
SET @rowsAdded=@@rowcount 
--do this while new employees are added in the previous iteration  WHILE @rowsAdded 
BEGIN

   
--mark employee records going to be found in this iteration with --processed=1 
   
UPDATE @managers SET processed=WHERE processed=0

   --insert employees who report to employees not yet processed 
   
INSERT @managers 
   
SELECT EmployeeIDReportsTo
   FROM Employees e 
   INNER JOIN @managers ON e.ReportsTo r.EmpID 
   WHERE ReportsTo <> EmployeeID AND r.processed 
          
   SET @rowsAdded @@rowcount 

   
--mark employee records found in this iteration as processed 
   
UPDATE @managers SET processed=WHERE processed=

END 

SELECT 
FROM @managers 


Source collected from msqltips.com

No comments :

Post a Comment