中國5級行政區域mysql庫

2021-10-08 17:34:15 字數 1169 閱讀 1610

爬取國家統計局官網的行政區域資料,包括省市縣鎮村5個層級;

港澳地區的資料只有3級;台灣地區4級;

cnarea20191031.7z是爬取2023年的資料,截止2023年10月31日.

全部共783562

港澳台資料共78812條,其中

改動:

create table `cnarea_2018` (

`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 '行政**',

`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`),

unique key `uk_code` (`area_code`) using btree,

key `idx_parent_code` (`parent_code`) using btree

) engine=myisam default charset=utf8 comment='中國行政地區表';

將行政區域匯入SQL SERVER

步驟如下 一 到國家統計局 找到縣及縣以上行政區劃頁面。我找到的是這個 然後將頁面上的 直接複製貼上到記事本,儲存為 e temp region.txt。注意複製時,可能是受記憶體限制,不一定能一次性複製完全所有內容,注意確認一下。複製貼上的結果,讓我傻眼了 二 硬著頭皮用sql server ma...

根據Excel匯入樹形部門行政區域

根據excel提供的內容進行行政區域的匯入 通過excel工具類獲取workbook workbook workbook excelutil.load file sheet sheet workbook.getsheetat 0 int lastrownum sheet.getlastrownum ...

最新中國大陸行政區域劃分

原始資料收集 於 國家統計局 一 按照國家統計局的格式先分表 直接上表結構 行政地區 省表 create table df dict province id int 11 not null,name varchar 64 default null,province id varchar 12 def...