Jestem w trakcie upraszczania skomplikowanej instrukcji select, więc pomyślałem, że użyję typowych wyrażeń tabelowych.
Zadeklarowanie pojedynczego cte działa dobrze.
WITH cte1 AS (
SELECT * from cdr.Location
)
select * from cte1
Czy można zadeklarować i użyć więcej niż jednego cte w tym samym SELECT?
czyli ten sql daje błąd
WITH cte1 as (
SELECT * from cdr.Location
)
WITH cte2 as (
SELECT * from cdr.Location
)
select * from cte1
union
select * from cte2
błąd jest
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. Próbowałem wstawić średniki i uzyskać ten błąd
Msg 102, Level 15, State 1, Line 5
Incorrect syntax near ';'.
Msg 102, Level 15, State 1, Line 9
Incorrect syntax near ';'.
Prawdopodobnie nieistotne, ale dotyczy to SQL 2008.
sql
sql-server
sql-server-2008
tsql
common-table-expression
Paul Rowland
źródło
źródło
cte2
może odwoływać się w tencte1
sposób: ... cte2 as (SELECT * FROM cte1 WHERE ...)Powyższa odpowiedź jest prawidłowa:
WITH cte1 as (SELECT * from cdr.Location), cte2 as (SELECT * from cdr.Location) select * from cte1 union select * from cte2
Dodatkowo możesz również zapytać z cte1 w cte2:
WITH cte1 as (SELECT * from cdr.Location), cte2 as (SELECT * from cte1 where val1 = val2) select * from cte1 union select * from cte2
val1,val2
są tylko założeniami dla wyrażeń.Mam nadzieję, że ten blog również pomoże: http://iamfixed.blogspot.de/2017/11/common-table-expression-in-sql-with.html
źródło