此文件是对地区划分做出的mysql格式数据,可以在Mysql中直接运行生成
2022-08-10 12:03:19 215KB MySQL 地区表
1
数据库 + mysql + 行政区域数据 城市唯一码, 地区表数据精确到镇, 对应百度返回的城市码,还有经纬度 在一张表中 5万条数据 山东艾思软件科技有限公司
1
四级城市地区表 xlsx, sql文件,国内,中国省市县街道乡镇四级地址 ID 父ID 名称 联动ID 层级 是否末级(1-是) 11 0 北京市 11 1 0 110107 1101 石景山区 11-1101-110107 3 0 110107001 110107 八宝山街道 11-1101-110107-110107001 4 1 110107002 110107 老山街道 11-1101-110107-110107002 4 1
2022-04-19 19:05:42 2.48MB sql 数据库 城市联动 四级城市地区
1
2018身份证号码前6位对照地区表.xls
2022-04-19 18:04:40 517KB 身份证 号码 前6位 对照
1
世界国家,城市,地区表用来做三级联动,有中日英三种语言,有两个sql提供选择。
2022-03-21 20:22:29 599KB 国家城市地区表
1
中国省市区数据库(含邮编、行政代码、区号、英文缩写)
2022-02-24 15:09:38 30KB 三级联动 地区表
1
insert into area_districts values(0,'110101','北京市','北京市北京市','110000','',''); insert into area_districts values(0,'110101','东城区','北京市北京市东城区','110101','',''); insert into area_districts values(0,'110102','西城区','北京市北京市西城区','110101','',''); insert into area_districts values(0,'110103','崇文区','北京市北京市崇文区','110101','',''); insert into area_districts values(0,'210203','西岗区','辽宁省大连市西岗区','210200','',''); insert into area_districts values(0,'210204','沙河口区','辽宁省大连市沙河口区','210200','','');
2022-02-22 09:05:06 342KB 全国城市
1
全国地区数据库表四级mysql,精确到街道
2022-02-16 17:59:12 3.16MB 全国地区表 mysql 街道
1
mysql三级联动地区表,仅供各位参考,如有需要尽情下载使用
2021-12-30 14:13:11 325KB mysql 地区 三级联动
1
CREATE TABLE `region` ( `id` mediumint(7) unsigned NOT NULL AUTO_INCREMENT, `level` tinyint(1) unsigned NOT NULL COMMENT '层级', `parent_code` bigint(14) unsigned NOT NULL DEFAULT '0' COMMENT '父级行政代码', `area_code` bigint(14) unsigned NOT NULL DEFAULT '0' COMMENT '行政代码', `zip_code` mediumint(6) unsigned zerofill NOT NULL DEFAULT '000000' COMMENT '邮政编码', `city_code` char(6) NOT NULL DEFAULT '' COMMENT '区号', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '名称', `short_name` varchar(50) NOT NULL DEFAULT '' COMMENT '简称', `merger_name` varchar(50) NOT NULL DEFAULT '' COMMENT '组合名', `pinyin` varchar(30) NOT NULL DEFAULT '' COMMENT '拼音', `lng` decimal(10,6) NOT NULL DEFAULT '0.000000' COMMENT '经度', `lat` decimal(10,6) NOT NULL DEFAULT '0.000000' COMMENT '纬度', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `uk_code` (`area_code`) USING BTREE, KEY `idx_parent_code` (`parent_code`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=758050 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='中国行政地区表'; INSERT INTO `region` VALUES (1, 0, 0, 110000000000, 000000, '', '北京市', '北京', '北京', 'BeiJing', 116.407526, 39.904030); INSERT INTO `region` VALUES (2, 1, 110000000000, 110100000000, 100000, '010', '直辖区', '北京', '北京', 'BeiJing', 116.407526, 39.904030); INSERT INTO `region` VALUES (3, 2, 110100000000, 110101000000, 100000, '010', '东城区', '东城', '北京,东城', 'DongCheng', 116.416357, 39.928353);
2021-12-27 10:04:08 142.07MB mysql 地区表 五级地区表 全国地区表