Skip to content

Instantly share code, notes, and snippets.

@metalogico
metalogico / italy_regions_provinces_cities_istat_2020.sql
Last active December 11, 2020 13:44
Comuni, Province e Regioni Italiane SQL -Cities, Provinces and Regions in Italy SQL - Update ISTAT 2020
# Dump of table italy_regions
# ------------------------------------------------------------
DROP TABLE IF EXISTS `italy_regions`;
CREATE TABLE `italy_regions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `italy_regions_name_unique` (`name`)