Created
November 5, 2022 20:53
-
-
Save cnstlungu/9012e16d52ebb7ba1e9feccfe9be893a to your computer and use it in GitHub Desktop.
Capitalize SQL keywords
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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