-
全国地区表的mysql数据库表
资源介绍
包含了全国所有的地区:
CREATE TABLE `b_region` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` longtext,
`level` tinyint(4) DEFAULT '0',
`parent_id` int(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3784 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of b_region
-- ----------------------------
INSERT INTO `b_region` VALUES ('1', '北京', '1', '0');
- 上一篇: 全国省市县乡镇行政区域数据库
- 下一篇: 2015最新的省市区 mysql 数据库(只一张表)