Skip to content

Instantly share code, notes, and snippets.

View tesfvye's full-sized avatar

Marco Antonio Estay Peñaloza tesfvye

  • AIEP
  • Santiago, Chile.
View GitHub Profile
@Raulebc
Raulebc / MySQL:regiones-provincias-comunas-chile.sql
Last active September 8, 2024 19:29
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;