Skip to content

Instantly share code, notes, and snippets.

View bermudezedson's full-sized avatar

Alejandro Bermudez bermudezedson

View GitHub Profile
@Raulebc
Raulebc / MySQL:regiones-provincias-comunas-chile.sql
Last active June 16, 2024 01:33
MySQL-Chile:regiones-provincias-comunas
Script comunas, regiones, provincias Junio 2022
DROP TABLE IF EXISTS `comunas`;
CREATE TABLE `comunas` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`comuna` varchar(64) NOT NULL,
`provincia_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=346 DEFAULT CHARSET=utf8;