SQL

SQL

Made by DeepSource

Unnecessary whitespace found SQL-L039

Style
Minor

Whitespace should be limited to a single space unless while indenting or preceding a comment.

Bad practice

SELECT
    a,        b
FROM foo

Recommended

SELECT
    a, b
FROM foo