Last active
May 25, 2021 11:41
-
-
Save byeblogs/44f619c9939feafdecfb to your computer and use it in GitHub Desktop.
Join Multiple Tablet MySQL
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 DI.HB_NAME, D.DESTINATION_CODE, CI.COUNTRY_CODE | |
| FROM DESTINATION_ID as DI | |
| JOIN DESTINATION as D | |
| ON D.DESTINATION_CODE = DI.DESTINATION_CODE | |
| JOIN COUNTRY_ID as CI | |
| ON CI.COUNTRY_CODE = D.COUNTRY_CODE | |
| WHERE (CI.COUNTRY_CODE = 'ID') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment