最新县及县以上行政区划代码(截止2016年7月31日)
最新县及县以上行政区划代码(截止2016年7月31日) 截止目前最新。 -- ---------------------------- -- Table structure for `feng_area` -- ---------------------------- DROP TABLE IF EXISTS `feng_area`; CREATE TABLE `feng_area` ( `ID` bigint(20) NOT NULL AUTO_INCREMENT, `CODE` varchar(20) NOT NULL COMMENT '城市CODE', `NAME` varchar(50) NOT NULL COMMENT '城市名称', `PARENT` varchar(20) NOT NULL COMMENT '父级CODE', `LEVEL` tinyint(1) NOT NULL COMMENT '等级', PRIMARY KEY (`ID`) ) ENGINE=InnoDB AUTO_INCREMENT=3509 DEFAULT CHARSET=utf8 COMMENT='城市表'; -- ---------------------------- -- Records of feng_area -- ---------------------------- INSERT INTO `feng_area` VALUES ('1', '110000', '北京市', '110000', '1'); INSERT INTO `feng_area` VALUES ('2', '110100', '市辖区', '110000', '2'); INSERT INTO `feng_area` VALUES ('3', '110101', '东城区', '110100', '3'); INSERT INTO `feng_area` VALUES ('4', '110102', '西城区', '110100', '3'); INSERT INTO `feng_area` VALUES ('5', '110105', '朝阳区', '110100', '3'); INSERT INTO `feng_area` VALUES ('6', '110106', '丰台区', '110100', '3'); INSERT INTO `feng_area` VALUES ('7', '110107', '石景山区', '110100', '3'); INSERT INTO `feng_area` VALUES ('8', '110108', '海淀区', '110100', '3'); INSERT INTO `feng_area` VALUES ('9', '110109', '门头沟区', '110100', '3'); INSERT INTO `feng_area` VALUES ('10', '110111', '房山区', '110100', '3'); INSERT INTO `feng_area` VALUES ('11', '110112', '通州区', '110100', '3'); INSERT INTO `feng_area` VALUES ('12', '110113', '顺义区', '110100', '3'); INSERT INTO `feng_area` VALUES ('13', '110114', '昌平区', '110100', '3'); INSERT INTO `feng_area` VALUES ('14', '110115', '大兴区', '110100', '3'); INSERT INTO `feng_area` VALUES ('15', '110116', '怀柔区', '110100', '3'); ......
用户评论