SQL

SQL

Made by DeepSource

Missing blank line SQL-L022

Style
Minor

A blank line is expected after CTE definition. In queries with many CTEs this hinders readability.

Bad practice

There is no blank line after the CTE.

WITH plop AS (
    SELECT * FROM foo
)
SELECT a FROM plop

Recommended

Add a blank line.

WITH plop AS (
    SELECT * FROM foo
)

SELECT a FROM plop