Skip to content

Instantly share code, notes, and snippets.

@cnstlungu
Created November 5, 2022 20:58
Show Gist options
  • Select an option

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

Select an option

Save cnstlungu/ee27a42e65a49bcf2efdaa9a67771a7e to your computer and use it in GitHub Desktop.
Avoid implicit aliasing SQL
-- avoid
SELECT 1 a;
-- better
SELECT 1 AS a;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment