[sql] 단일 SELECT 문에 여러 공통 테이블 식을 어떻게 가질 수 있습니까?

복잡한 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에 있습니다.



답변

나는 그것이 다음과 같아야한다고 생각합니다.

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

기본적으로 WITH는 여기에 절일 뿐이며 목록을 사용하는 다른 절과 마찬가지로 “,”가 적절한 구분 기호입니다.


답변

위에서 언급 한 대답이 옳습니다.

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


답변