Common Table Expressions : With « Transact SQL « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Transact SQL » With 
20. 25. 1. Common Table Expressions
A Common Table Expression (CTEcreates a temporary query that can be referenced within the scope of a SELECT, INSERT, UPDATE, or DELETE query.

The basic syntax for a CTE is as follows:
WITH expression_name [ ( column_name ,...n ] ) ]
AS CTE_query_definition )

The arguments of a CTE are described in the following table.

Argument                   Description
expression_name            The name of the common table expression.
column_name ,...n ]      The unique column names of the expression.
CTE_query_definition       The SELECT query that defines the common table expression.

A non-recursive CTE is one that is used within a query without referencing itself. 
It serves as a temporary result set for the query. 
A recursive CTE is defined similarly to a non-recursive CTE, only a recursive CTE returns hierarchical self-relating data. 
Using a CTE to represent recursive data can minimize the amount of code needed compared to other methods.

Referenced from:
SQL Server 2005 T-SQL Recipes A Problem-Solution Approach


5create table freights
6>        (orderid INT NOT NULL,
7>        orderdate DATETIME,
8>        shippeddate DATETIME,
9>        freight MONEY,
10>        price MONEY)
11> GO
1INSERT INTO freights VALUES (1111'1.10.2005','1.20.2005', 30.45200.25)
2INSERT INTO freights VALUES (2222'2.11.2005', '2.21.2005', 89.25543.00)
3INSERT INTO freights VALUES (3333'3.12.2005', '3.22.2005', 19.35120.25)
4INSERT INTO freights VALUES (4444'4.13.2005', '4.23.2005', 9.99154.35)
5> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1select orderid from freights
2where price > (SELECT AVG(pricefrom freights WHERE YEAR(orderdate'2005')
3>         AND freight > (SELECT AVG(price)
4>                     from freights
5>                     WHERE YEAR(orderdate'2005')/10
6> GO
orderid
-----------
       2222

(rows affected)
1> --A better way is to write a common table expression using the WITH clause.
2>
3> WITH price_calc (year_2005AS
4>        (SELECT AVG(price)
5>                 from freights
6>                 WHERE YEAR(orderdate)='2005')
7>       SELECT orderid
8>        FROM freights
9>        WHERE price > (SELECT year_2005
10>              FROM price_calc)
11>        AND freight > (SELECT year_2005
12>              FROM price_calc)/10;
13> drop table freights;
14> GO
orderid
-----------
       2222

(rows affected)
20. 25. With
20. 25. 1. Common Table Expressions
20. 25. 2. Select from Common Table Expressions
20. 25. 3. Syntax for a CTE for recursive queries is
20. 25. 4. With as
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.