Created
June 11, 2021 19:38
-
-
Save bartubozkurt/c421ec68e36d40ecdcdd4861339a8b9a to your computer and use it in GitHub Desktop.
The INNER JOIN statement is used to join tables with a common value.
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
| SELECT city.name, country.name | |
| FROM city | |
| INNER JOIN country | |
| ON city.country_id = country.id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment