You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH hello_world AS (
WITH hello_another_world AS (
WITH hello_third_world AS (
SELECTFROMWHEREORDER BY
), hello_third_world_again AS (
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
), hello_another_world_again AS (
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
Gets formatted as:
WITH hello_world AS (
WITH hello_another_world AS (
WITH hello_third_world AS (
SELECTFROMWHEREORDER BY
),
hello_third_world_again AS (
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
),
hello_another_world_again AS (
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
)
SELECTFROMWHEREORDER BY
It is kind of a problem since nested CTEs tend to be used in complex queries in which indentation is a hint to the CTEs scope visibility.
The text was updated successfully, but these errors were encountered:
The structure like this:
Gets formatted as:
It is kind of a problem since nested CTEs tend to be used in complex queries in which indentation is a hint to the CTEs scope visibility.
The text was updated successfully, but these errors were encountered: