2017年 全国省市区行政区域 sql ,mysql 版本 ,结构如下:
CREATE TABLE `district` (
`id` smallint(5) NOT NULL,
`name` varchar(270) DEFAULT NULL,
`parent_id` smallint(5) DEFAULT NULL,
`code` char(30) DEFAULT NULL,
`order` smallint(2) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
1