SQL

SQL

Made by DeepSource

Operators placed before the newline SQL-L007

Style
Minor

Operators near newlines should be placed after, not before the newline.

Bad practice

In this example, the operator ‘+’ should not be at the end of the second line.

SELECT
    a +
    b
FROM foo

Recommended

Place the operator after the newline.

SELECT
    a
    + b
FROM foo