Estou no processo de simplificar uma instrução select complicada, então pensei em usar expressões de tabela comuns.
Declarar um único cte funciona bem.
WITH cte1 AS (
SELECT * from cdr.Location
)
select * from cte1
É possível declarar e usar mais de um cte no mesmo SELECT?
ou seja, este sql dá um erro
WITH cte1 as (
SELECT * from cdr.Location
)
WITH cte2 as (
SELECT * from cdr.Location
)
select * from cte1
union
select * from cte2
o erro é
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. Eu tentei colocar ponto-e-vírgulas e obtive este erro
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near ';'.
Msg 102, Level 15, State 1, Line 9
Incorrect syntax near ';'.
Provavelmente não é relevante, mas isso é no SQL 2008.