Created
June 11, 2021 17:29
-
-
Save bartubozkurt/5dd853ae5d459e698d3d883c799d2d88 to your computer and use it in GitHub Desktop.
With the AS expression, we can temporarily give short names to long and difficult to use table or field names
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 co.name, ci.name | |
FROM city AS ci | |
JOIN country AS co | |
ON ci.country_id = co.id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment