最新中国省份城市县区三级联动mysql数据库查询表结构
DROP TABLE IF EXISTS sys_area
; CREATE TABLE sys_area
( id
int(10) unsigned NOT NULL AUTO_INCREMENT, parent_id
int(10) unsigned NOT NULL DEFAULT '0' COMMENT '上级', area_name
varchar(20) NOT NULL DEFAULT '' COMMENT '地名', level
varchar(255) DEFAULT '1' COMMENT '层级1省2市3区', area_code
char(12) DEFAULT '' COMMENT '编码', sort
tinyint(3) unsigned DEFAULT '255' COMMENT '排序', PRIMARY KEY (id
) USING BTREE, KEY pid
(parent_id
) USING BTREE )
用户评论