Skip to content

Instantly share code, notes, and snippets.

@cnstlungu
Created November 5, 2022 20:53
Show Gist options
  • Save cnstlungu/9012e16d52ebb7ba1e9feccfe9be893a to your computer and use it in GitHub Desktop.
Save cnstlungu/9012e16d52ebb7ba1e9feccfe9be893a to your computer and use it in GitHub Desktop.
Capitalize SQL keywords
-- avoid
select 1 as a, 2 as b
-- better
SELECT 1 AS a, 2 AS b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment