私は複雑な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に関するものです。