Forked from juque/MySQL-Chile:regiones-provincias-comunas
Created
November 16, 2012 19:49
-
-
Save glarrain/4090294 to your computer and use it in GitHub Desktop.
Chile: Regiones, Provincias, Comunas
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 | |
| comuna_nombre AS comuna, | |
| provincia_nombre AS provincia, | |
| region_nombre AS region | |
| FROM comunas | |
| INNER JOIN provincias ON | |
| comunas.provincia_id = provincias.provincia_id | |
| INNER JOIN regiones ON | |
| provincias.region_id = regiones.region_id | |
| WHERE region_ordinal LIKE "IX" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment