proyecto26 / colombia

Departamentos y Municipios de Colombia 🇨🇴

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Departamentos y Municipios de Colombia

Data extracted from Departamento Administrativo Nacional de Estadística.

Info

  • Entity name: Ministerio de Tecnologías de La Información y Las Comunicaciones (MinTIC).
  • Date: 2017-05-11

JSON Data

SQL Tables

  • Departments
CREATE TABLE IF NOT EXISTS department (
  id INT PRIMARY KEY,
  `name` VARCHAR(80) NOT NULL
);
  • Cities
CREATE TABLE IF NOT EXISTS city (
  id INT PRIMARY KEY,
  `name` VARCHAR(50) NOT NULL,
  `departmentId` INT NOT NULL,
  CONSTRAINT `fk_city_department`
    FOREIGN KEY (`departmentId`)
    REFERENCES `department` (`id`)
    ON DELETE NO ACTION
    ON UPDATE NO ACTION
);

Supporting 🍻

I believe in Unicorns 🦄 Support me, if you do too.

Donate Ethereum, ADA, BNB, SHIBA, USDT, DOGE:

Wallet address

Wallet address: 0x3F9fA8021B43ACe578C2352861Cf335449F33427

Please let us know your contributions! 🙏

Happy coding 💯

Made with ❤️

About

Departamentos y Municipios de Colombia 🇨🇴

License:MIT License