Created
November 5, 2022 21:12
-
-
Save cnstlungu/ae94a5f7a6ab882967ddc3268a61e917 to your computer and use it in GitHub Desktop.
Avoid SQL star
This file contains hidden or 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 | |
| * | |
| FROM | |
| table1 | |
| -- better | |
| SELECT | |
| column1, | |
| column2, | |
| column3 | |
| FROM | |
| table1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment