SQL

SQL

Made by DeepSource

Expected a single whitespace after USING SQL-L024

Style
Minor

A single whitespace expected after USING in JOIN clause to avoid confusing it for a function.

Bad practice

SELECT b
FROM foo
LEFT JOIN zoo USING(a)

Recommended

Add a space after USING, to avoid confusing it for a function.

SELECT b
FROM foo
LEFT JOIN zoo USING (a)