USING
SQL-L024A single whitespace expected after USING
in JOIN
clause to avoid confusing it for a function.
SELECT b
FROM foo
LEFT JOIN zoo USING(a)
Add a space after USING, to avoid confusing it for a function.
SELECT b
FROM foo
LEFT JOIN zoo USING (a)