Sto semplificando un'istruzione select complicata, quindi ho pensato di utilizzare espressioni di tabella comuni.
Dichiarare un singolo cte funziona bene.
WITH cte1 AS (
SELECT * from cdr.Location
)
select * from cte1
È possibile dichiarare e utilizzare più di un cte nella stessa SELECT?
cioè questo sql dà un errore
WITH cte1 as (
SELECT * from cdr.Location
)
WITH cte2 as (
SELECT * from cdr.Location
)
select * from cte1
union
select * from cte2
l'errore è
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. Ho provato a inserire i punti e virgola e ottengo questo errore
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near ';'.
Msg 102, Level 15, State 1, Line 9
Incorrect syntax near ';'.
Probabilmente non è rilevante, ma questo è su SQL 2008.