中國行政區劃表包括34個省直轄市的所有資料

2022-08-15 14:42:14 字數 1559 閱讀 4881

如有需要可以加我q群大家一起討論技術,提供技術支援。

--中國行政區劃表,包括34個省、直轄市的所有資料

-- ----------------------------

-- table structure for js_sys_area

-- ----------------------------

表結構如下:

drop table if exists `js_sys_area`;

create table `js_sys_area` (

`area_code` varchar(100) not null comment '區域編碼',

`parent_code` varchar(64) not null comment '父級編號',

`parent_codes` varchar(2000) not null comment '所有父級編號',

`tree_sort` decimal(10,0) not null comment '本級排序號(公升序)',

`tree_sorts` varchar(1200) not null comment '所有級別排序號',

`tree_leaf` char(1) not null comment '是否最末級',

`tree_level` decimal(4,0) not null comment '層次級別',

`tree_names` varchar(2000) not null comment '全節點名',

`area_name` varchar(100) not null comment '區域名稱',

`area_type` char(1) default null comment '區域型別',

`status` char(1) not null default '0' comment '狀態(0正常 1刪除 2停用)',

`create_by` varchar(64) not null comment '建立者',

`create_date` timestamp not null default current_timestamp on update current_timestamp comment '建立時間',

`update_by` varchar(64) not null comment '更新者',

`update_date` timestamp not null default '0000-00-00 00:00:00' comment '更新時間',

`remarks` varchar(500) default null comment '備註資訊',

primary key (`area_code`),

key `idx_sys_area_pc` (`parent_code`),

key `idx_sys_area_ts` (`tree_sort`),

key `idx_sys_area_status` (`status`)

) engine=innodb default charset=utf8 comment='行政區劃';

中國行政區劃表包括34個省直轄市的所有資料

如有需要可以加我q群 308742428 大家一起討論技術,提供技術支援。中國行政區劃表,包括34個省 直轄市的所有資料 table structure for js sys area 表結構如下 drop table if exists js sys area create table js sy...

開源專案 中國行政區劃資料

中國的省 市 區等行政區劃資料是任何網際網路服務的基礎,每次重新做乙個專案的時候都要重新尋找相關資料。我嘗試著從github上尋找合適的行政區劃資料,雖然有許多關於行政區劃資料的專案,但其資料都不太理想,大多數都存在以下問題 上面說的問題總結起來可以歸因為兩個方面 資料準確性 和 資料實時性 專案雖...

中國行政區劃編碼 省市縣鎮村

為什麼80 的碼農都做不了架構師?行政區劃數字 簡稱數字碼 由12位組成,前6位分別表示省 自治區 直轄市 特別行政區 市 地區 自治州 盟 直轄市所轄市轄區 縣彙總碼 省 自治區 直轄縣級行政區劃彙總碼 縣 自治縣 縣級市 旗 自治旗 市轄區 林區 特區 前6位數字碼從左到右含義 前兩位表示省 接...