All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Quoted literals should be surrounded by a single whitespace.
In this example, there is a space missing between the string 'foo' and the keyword AS.
SELECT 'foo'AS bar FROM foo
Make the case consistent.
SELECT 'foo' AS bar FROM foo