Skip to content

Instantly share code, notes, and snippets.

@cnstlungu
Created November 5, 2022 21:12
Show Gist options
  • Select an option

  • Save cnstlungu/ae94a5f7a6ab882967ddc3268a61e917 to your computer and use it in GitHub Desktop.

Select an option

Save cnstlungu/ae94a5f7a6ab882967ddc3268a61e917 to your computer and use it in GitHub Desktop.
Avoid SQL star
-- 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