在涉及到地區性項目開發中,區域信息是少不了的, 本文就例舉了一張區域表,裏面包含中國全部的省市區信息, 文章主要分析了這張地區的結構設計,在下載區域能夠對腳本進行下載(提供了創表語句 和 數據語句)dom
實例下載:http://www.wisdomdd.cn/Wisdom/resource/articleDetail.htm?resourceId=148設計
建表語句:3d
create table PUB_CISYSREGION( insttu_cde VARCHAR2(3) not null, code CHAR(6) not null, grade NUMBER(5) not null, head_code CHAR(6) not null, fname VARCHAR2(100) not null, status CHAR(1) not null);comment on table PUB_CISYSREGION is '公共行政區號表';comment on column PUB_CISYSREGION.insttu_cde is '行政碼';comment on column PUB_CISYSREGION.code is '行政區號';comment on column PUB_CISYSREGION.grade is '級別';comment on column PUB_CISYSREGION.head_code is '上級行政區號';comment on column PUB_CISYSREGION.fname is '行政區名';comment on column PUB_CISYSREGION.status is '狀態';
第一列: insttu_cde沒有做用,不用管它code
第二列: code 用於標誌當前地區的idhtm
第三列: grade 區域級別 2:省,直轄市 1: 城市 0: 縣區blog
第四列: head_code 標誌父級別的id, grade爲2,即省的父級別id爲 000000開發
第五列: fname 地區名稱get
第六列: status 不用管,若是你的業務只須要使用到部分地區,能夠經過此字段來控制table
下面展現了宿遷市的信息下載
根據子級別的信息反推父級別的區域信息