Created
November 5, 2022 21:09
-
-
Save cnstlungu/ff8408fdaa5e6812233fa184fad1916b to your computer and use it in GitHub Desktop.
Use table alias
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
SELECT | |
pd.a, | |
pc.b, | |
od.c | |
FROM | |
products pd | |
JOIN | |
prices pc ON ... | |
JOIN | |
orders od ON ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment