如何在单个SELECT语句中使用多个公用表表达式?

时间:2009-02-25 00:30:06

标签: sql sql-server sql-server-2008 tsql common-table-expression

我正在简化复杂的select语句,因此我想使用公用表表达式。

声明一个cte工作正常。

WITH cte1 AS (
    SELECT * from cdr.Location
    )

select * from cte1 

是否可以在同一个SELECT中声明和使用多个cte?

即此sql给出错误

WITH cte1 as (
    SELECT * from cdr.Location
)

WITH cte2 as (
    SELECT * from cdr.Location
)

select * from cte1    
union     
select * from cte2

错误是

Msg 156, Level 15, State 1, Line 7
Incorrect syntax near the keyword 'WITH'.
Msg 319, Level 15, State 1, Line 7
Incorrect syntax near the keyword 'with'. If this statement is a common table expression, an xmlnamespaces clause or a change tracking context clause, the previous statement must be terminated with a semicolon.

NB。我尝试过分号并得到此错误

Msg 102, Level 15, State 1, Line 5
Incorrect syntax near ';'.
Msg 102, Level 15, State 1, Line 9
Incorrect syntax near ';'.

可能不相关,但这是在SQL 2008上。

2 个答案:

答案 0 :(得分:130)

我认为应该是这样的:

WITH 
    cte1 as (SELECT * from cdr.Location),
    cte2 as (SELECT * from cdr.Location)
select * from cte1 union select * from cte2

基本上,WITH只是这里的一个子句,就像采用列表的其他子句一样,“,”是适当的分隔符。

答案 1 :(得分:13)

上面提到的答案是对的:

WITH 
    cte1 as (SELECT * from cdr.Location),
    cte2 as (SELECT * from cdr.Location)
select * from cte1 union select * from cte2

另外,您也可以在cte2中查询cte1:

WITH 
    cte1 as (SELECT * from cdr.Location),
    cte2 as (SELECT * from cte1 where val1 = val2)

select * from cte1 union select * from cte2

val1,val2只是表达式的假设..

希望此博客也会有所帮助: http://iamfixed.blogspot.de/2017/11/common-table-expression-in-sql-with.html