文件名称:高德地图省市区数据表表
文件大小:1.16MB
文件格式:SQL
更新时间:2022-01-09 05:26:44
sql
创建表的字段如下,有需要再下载。 CREATE TABLE `region` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '表id', `name` varchar(32) DEFAULT NULL COMMENT '地区名称', `level` tinyint(4) DEFAULT NULL COMMENT '1:省(province )2:市(city) 3:区,县(district)4:街道(street)', `parent_id` int(10) DEFAULT NULL COMMENT '父id', `adcode` int(10) DEFAULT NULL COMMENT '地址编码', `center` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12120 DEFAULT CHARSET=gbk;