-- ----------------------------
-- Table structure for districts
-- ----------------------------
DROP TABLE IF EXISTS `districts`;
CREATE TABLE `districts`  (`code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '城市代码',`name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '城市名称',`full_spell` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '全拼,北京全拼为beijing',`easy_spell` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '简拼,北京简拼为bj',`initial` char(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '首字母,北京首字母为b',`parent_code` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '' COMMENT '父级城市代码',`depth` char(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT '0' COMMENT '等级:省=1,市=2,县区=3,乡镇=4,村=5  ',`longitude` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '经度坐标(数据来自百度)',`latitude` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '纬度坐标(数据来自百度)',`data_from_url` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '数据来源地址',PRIMARY KEY (`code`) USING BTREE,INDEX `index_parent_code_depth`(`parent_code`, `depth`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '省市县(区)表' ROW_FORMAT = Dynamic;-- ----------------------------
-- Records of districts
-- ----------------------------
INSERT INTO `districts` VALUES ('11', '北京市', 'beijingshi', 'bjs', 'b', '', '1', '116.4133836971231', '39.910924547299565', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/index.html');
INSERT INTO `districts` VALUES ('1101', '北京市', 'shixiaqu', 'sxq', 's', '11', '2', '116.4133836971231', '39.910924547299565', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11.html');
INSERT INTO `districts` VALUES ('110101', '东城区', 'dongchengqu', 'dcq', 'd', '1101', '3', '116.4224009776628', '39.93482727239599', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/1101.html');
INSERT INTO `districts` VALUES ('110101001', '东华门街道办事处', 'donghuamenjiedaobanshichu', 'dhmjdbsc', 'd', '110101', '4', '116.41138223022651', '39.91847078555794', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101001001', '多福巷社区居委会', 'duofuxiangshequjuweihui', 'dfxsqjwh', 'd', '110101001', '5', '116.41959907294664', '39.929211035027976', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001002', '银闸社区居委会', 'yinzhashequjuweihui', 'yzsqjwh', 'y', '110101001', '5', '116.41258039101402', '39.92581546608846', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001005', '东厂社区居委会', 'dongchangshequjuweihui', 'dcsqjwh', 'd', '110101001', '5', '116.4147077994448', '39.92939223799774', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001006', '智德社区居委会', 'zhideshequjuweihui', 'zdsqjwh', 'z', '110101001', '5', '116.41138223022651', '39.91847078555794', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001007', '南池子社区居委会', 'nanchizishequjuweihui', 'nczsqjwh', 'n', '110101001', '5', '116.41075884842294', '39.918153280975325', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001008', '黄图岗社区居委会', 'huangtugangshequjuweihui', 'htgsqjwh', 'h', '110101001', '5', '116.41528619680334', '39.92726620830322', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001009', '灯市口社区居委会', 'dengshikoushequjuweihui', 'dsksqjwh', 'd', '110101001', '5', '116.42310592111515', '39.924461062455045', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001010', '正义路社区居委会', 'zhengyilushequjuweihui', 'zylsqjwh', 'z', '110101001', '5', '116.41272883240632', '39.908589469558926', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001011', '甘雨社区居委会', 'ganyushequjuweihui', 'gysqjwh', 'g', '110101001', '5', '116.42316265090471', '39.92308512195529', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001013', '台基厂社区居委会', 'taijichangshequjuweihui', 'tjcsqjwh', 't', '110101001', '5', '116.42193556557808', '39.91157324647556', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001014', '韶九社区居委会', 'shaojiushequjuweihui', 'sjsqjwh', 's', '110101001', '5', '116.41374449075153', '39.9230986233642', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101001015', '王府井社区居委会', 'wangfujingshequjuweihui', 'wfjsqjwh', 'w', '110101001', '5', '116.42116302283951', '39.92060333705499', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101001.html');
INSERT INTO `districts` VALUES ('110101002', '景山街道办事处', 'jingshanjiedaobanshichu', 'jsjdbsc', 'j', '110101', '4', '116.41694817338669', '39.933261013519605', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101002001', '隆福寺社区居委会', 'longfusishequjuweihui', 'lfssqjwh', 'l', '110101002', '5', '116.4192999372118', '39.93232945686501', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002002', '吉祥社区居委会', 'jixiangshequjuweihui', 'jxsqjwh', 'j', '110101002', '5', '116.41694817338669', '39.933261013519605', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002003', '黄化门社区居委会', 'huanghuamenshequjuweihui', 'hhmsqjwh', 'h', '110101002', '5', '116.40689793134105', '39.936730551955094', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002004', '钟鼓社区居委会', 'zhonggushequjuweihui', 'zgsqjwh', 'z', '110101002', '5', '116.40974825472422', '39.935337087122114', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002005', '魏家社区居委会', 'weijiashequjuweihui', 'wjsqjwh', 'w', '110101002', '5', '116.42259312521139', '39.936113005064016', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002006', '汪芝麻社区居委会', 'wangzhimashequjuweihui', 'wzmsqjwh', 'w', '110101002', '5', '116.4184609198655', '39.938919236744326', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002008', '景山东街社区居委会', 'jingshandongjieshequjuweihui', 'jsdjsqjwh', 'j', '110101002', '5', '116.4087278668005', '39.93193313123629', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101002009', '皇城根北街社区居委会', 'huangchenggenbeijieshequjuweihui', 'hcgbjsqjwh', 'h', '110101002', '5', '116.41318966313294', '39.93220497171154', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101002.html');
INSERT INTO `districts` VALUES ('110101003', '交道口街道办事处', 'jiaodaokoujiedaobanshichu', 'jdkjdbsc', 'j', '110101', '4', '116.40725034018584', '39.9422089101671', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101003001', '交东社区居委会', 'jiaodongshequjuweihui', 'jdsqjwh', 'j', '110101003', '5', '116.40725034018584', '39.9422089101671', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003002', '福祥社区居委会', 'fuxiangshequjuweihui', 'fxsqjwh', 'f', '110101003', '5', '116.40814729464434', '39.940703463997124', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003003', '大兴社区居委会', 'daxingshequjuweihui', 'dxsqjwh', 'd', '110101003', '5', '116.41614059673321', '39.94472565189886', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003005', '府学社区居委会', 'fuxueshequjuweihui', 'fxsqjwh', 'f', '110101003', '5', '116.40725034018584', '39.9422089101671', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003007', '鼓楼苑社区居委会', 'gulouyuanshequjuweihui', 'glysqjwh', 'g', '110101003', '5', '116.4069832703645', '39.945365246873784', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003008', '菊儿社区居委会', 'juershequjuweihui', 'jesqjwh', 'j', '110101003', '5', '116.41204881513526', '39.945663261501', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101003009', '南锣鼓巷社区居委会', 'nanluoguxiangshequjuweihui', 'nlgxsqjwh', 'n', '110101003', '5', '116.41133376394933', '39.943970576343965', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101003.html');
INSERT INTO `districts` VALUES ('110101004', '安定门街道办事处', 'andingmenjiedaobanshichu', 'admjdbsc', 'a', '110101', '4', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101004001', '交北头条社区居委会', 'jiaobeitoutiaoshequjuweihui', 'jbttsqjwh', 'j', '110101004', '5', '116.41624120695033', '39.94817317036212', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004002', '北锣鼓巷社区居委会', 'beiluoguxiangshequjuweihui', 'blgxsqjwh', 'b', '110101004', '5', '116.40902332217766', '39.95452082035514', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004003', '国子监社区居委会', 'guozijianshequjuweihui', 'gzjsqjwh', 'g', '110101004', '5', '116.42189065030259', '39.952883666070875', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004004', '钟楼湾社区居委会', 'zhonglouwanshequjuweihui', 'zlwsqjwh', 'z', '110101004', '5', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004005', '宝钞南社区居委会', 'baochaonanshequjuweihui', 'bcnsqjwh', 'b', '110101004', '5', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004006', '五道营社区居委会', 'wudaoyingshequjuweihui', 'wdysqjwh', 'w', '110101004', '5', '116.41643434263497', '39.95332683546668', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004009', '分司厅社区居委会', 'fensitingshequjuweihui', 'fstsqjwh', 'f', '110101004', '5', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004011', '国旺社区居委会', 'guowangshequjuweihui', 'gwsqjwh', 'g', '110101004', '5', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101004012', '花园社区居委会', 'huayuanshequjuweihui', 'hysqjwh', 'h', '110101004', '5', '116.41900142040949', '39.95046113360532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101004.html');
INSERT INTO `districts` VALUES ('110101005', '北新桥街道办事处', 'beixinqiaojiedaobanshichu', 'bxqjdbsc', 'b', '110101', '4', '116.4305442069413', '39.94812725991497', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101005001', '海运仓社区居委会', 'haiyuncangshequjuweihui', 'hycsqjwh', 'h', '110101005', '5', '116.43511999554804', '39.941723277967945', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005002', '北新仓社区居委会', 'beixincangshequjuweihui', 'bxcsqjwh', 'b', '110101005', '5', '116.4350822667166', '39.94675090007037', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005004', '门楼社区居委会', 'menloushequjuweihui', 'mlsqjwh', 'm', '110101005', '5', '116.42974213330739', '39.94240254032196', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005005', '十三条社区居委会', 'shisantiaoshequjuweihui', 'sstsqjwh', 's', '110101005', '5', '116.43085394268115', '39.943736860779396', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005006', '民安社区居委会', 'minanshequjuweihui', 'masqjwh', 'm', '110101005', '5', '116.43657075894666', '39.94982150078053', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005008', '九道湾社区居委会', 'jiudaowanshequjuweihui', 'jdwsqjwh', 'j', '110101005', '5', '116.42551621134085', '39.94635954579664', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005009', '北官厅社区居委会', 'beiguantingshequjuweihui', 'bgtsqjwh', 'b', '110101005', '5', '116.43278260461106', '39.953787977459335', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005010', '青龙社区居委会', 'qinglongshequjuweihui', 'qlsqjwh', 'q', '110101005', '5', '116.42987928120283', '39.95439844996926', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005011', '小菊社区居委会', 'xiaojushequjuweihui', 'xjsqjwh', 'x', '110101005', '5', '116.4305442069413', '39.94812725991497', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005012', '藏经馆社区居委会', 'cangjingguanshequjuweihui', 'cjgsqjwh', 'c', '110101005', '5', '116.42468707535515', '39.952419061038015', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005014', '草园社区居委会', 'caoyuanshequjuweihui', 'cysqjwh', 'c', '110101005', '5', '116.4305442069413', '39.94812725991497', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101005016', '前永康社区居委会', 'qianyongkangshequjuweihui', 'qyksqjwh', 'q', '110101005', '5', '116.42518024508013', '39.950805363489074', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101005.html');
INSERT INTO `districts` VALUES ('110101006', '东四街道办事处', 'dongsijiedaobanshichu', 'dsjdbsc', 'd', '110101', '4', '116.43047934928347', '39.93675959657538', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101006001', '南门仓社区居委会', 'nanmencangshequjuweihui', 'nmcsqjwh', 'n', '110101006', '5', '116.43731814913095', '39.93473958277078', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006002', '七条社区居委会', 'qitiaoshequjuweihui', 'qtsqjwh', 'q', '110101006', '5', '116.4234231595026', '39.936634428004105', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006003', '二条社区居委会', 'ertiaoshequjuweihui', 'etsqjwh', 'e', '110101006', '5', '116.43047934928347', '39.93675959657538', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006006', '六条社区居委会', 'liutiaoshequjuweihui', 'ltsqjwh', 'l', '110101006', '5', '116.4284096533885', '39.93692072483848', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006007', '豆瓣社区居委会', 'doubanshequjuweihui', 'dbsqjwh', 'd', '110101006', '5', '116.43731545421441', '39.93514068580897', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006008', '八条社区居委会', 'batiaoshequjuweihui', 'btsqjwh', 'b', '110101006', '5', '116.42411575305081', '39.938571403087586', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101006009', '总院社区居委会', 'zongyuanshequjuweihui', 'zysqjwh', 'z', '110101006', '5', '116.43304709899051', '39.935597661618296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101006.html');
INSERT INTO `districts` VALUES ('110101007', '朝阳门街道办事处', 'chaoyangmenjiedaobanshichu', 'cymjdbsc', 'c', '110101', '4', '116.43692999042177', '39.92684719848015', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101007001', '史家社区居委会', 'shijiashequjuweihui', 'sjsqjwh', 's', '110101007', '5', '116.4308216036828', '39.924644837246866', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007002', '内务社区居委会', 'neiwushequjuweihui', 'nwsqjwh', 'n', '110101007', '5', '116.43692999042177', '39.92684719848015', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007003', '演乐社区居委会', 'yanleshequjuweihui', 'ylsqjwh', 'y', '110101007', '5', '116.42781228022437', '39.92682699520658', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007005', '礼士社区居委会', 'lishishequjuweihui', 'lssqjwh', 'l', '110101007', '5', '116.42798205996574', '39.928204727294826', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007006', '朝内头条社区居委会', 'chaoneitoutiaoshequjuweihui', 'cnttsqjwh', 'c', '110101007', '5', '116.43371774064696', '39.93108113707965', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007007', '朝西社区居委会', 'chaoxishequjuweihui', 'cxsqjwh', 'c', '110101007', '5', '116.4290860774375', '39.9289392296668', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007009', '竹杆社区居委会', 'zhuganshequjuweihui', 'zgsqjwh', 'z', '110101007', '5', '116.43735947118441', '39.927219153721715', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007011', '大方家社区居委会', 'dafangjiashequjuweihui', 'dfjsqjwh', 'd', '110101007', '5', '116.4399862332753', '39.92421147833829', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101007013', '新鲜社区居委会', 'xinxianshequjuweihui', 'xxsqjwh', 'x', '110101007', '5', '116.43587906370396', '39.92756427900722', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101007.html');
INSERT INTO `districts` VALUES ('110101008', '建国门街道办事处', 'jianguomenjiedaobanshichu', 'jgmjdbsc', 'j', '110101', '4', '116.43415880955067', '39.9201179325581', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101008005', '赵家楼社区居委会', 'zhaojialoushequjuweihui', 'zjlsqjwh', 'z', '110101008', '5', '116.43675221665966', '39.91891694429666', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008006', '西总布社区居委会', 'xizongbushequjuweihui', 'xzbsqjwh', 'x', '110101008', '5', '116.42536439770969', '39.91763171612867', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008007', '大雅宝社区居委会', 'dayabaoshequjuweihui', 'dybsqjwh', 'd', '110101008', '5', '116.43422079173254', '39.92043871155002', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008012', '苏州社区居委会', 'suzhoushequjuweihui', 'szsqjwh', 's', '110101008', '5', '116.43415880955067', '39.9201179325581', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008014', '外交部街社区居委会', 'waijiaobujieshequjuweihui', 'wjbjsqjwh', 'w', '110101008', '5', '116.43118990894189', '39.92043663643606', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008015', '站东社区居委会', 'zhandongshequjuweihui', 'zdsqjwh', 'z', '110101008', '5', '116.43415880955067', '39.9201179325581', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101008016', '金宝街北社区居委会', 'jinbaojiebeishequjuweihui', 'jbjbsqjwh', 'j', '110101008', '5', '116.43415880955067', '39.9201179325581', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101008.html');
INSERT INTO `districts` VALUES ('110101009', '东直门街道办事处', 'dongzhimenjiedaobanshichu', 'dzmjdbsc', 'd', '110101', '4', '116.44829420280128', '39.93653907090478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101009003', '胡家园社区居委会', 'hujiayuanshequjuweihui', 'hjysqjwh', 'h', '110101009', '5', '116.44829420280128', '39.93653907090478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009004', '新中街社区居委会', 'xinzhongjieshequjuweihui', 'xzjsqjwh', 'x', '110101009', '5', '116.44642079025344', '39.94088176071112', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009005', '清水苑社区居委会', 'qingshuiyuanshequjuweihui', 'qsysqjwh', 'q', '110101009', '5', '116.44829420280128', '39.93653907090478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009006', '新中西里社区居委会', 'xinzhongxilishequjuweihui', 'xzxlsqjwh', 'x', '110101009', '5', '116.44525916983915', '39.94077040099553', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009008', '十字坡社区居委会', 'shiziposhequjuweihui', 'szpsqjwh', 's', '110101009', '5', '116.44829420280128', '39.93653907090478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009010', '东外大街社区居委会', 'dongwaidajieshequjuweihui', 'dwdjsqjwh', 'd', '110101009', '5', '116.45045946043642', '39.946103020834556', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009012', '东环社区居委会', 'donghuanshequjuweihui', 'dhsqjwh', 'd', '110101009', '5', '116.44829420280128', '39.93653907090478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009013', '香河园北里社区居委会', 'xiangheyuanbeilishequjuweihui', 'xhyblsqjwh', 'x', '110101009', '5', '116.44203245644732', '39.95825335676696', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009015', '工人体育馆社区居委会', 'gongrentiyuguanshequjuweihui', 'grtygsqjwh', 'g', '110101009', '5', '116.44434469483', '39.93839437374298', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101009016', '东外大街北社区居委会', 'dongwaidajiebeishequjuweihui', 'dwdjbsqjwh', 'd', '110101009', '5', '116.44660393318759', '39.94914530296042', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101009.html');
INSERT INTO `districts` VALUES ('110101010', '和平里街道办事处', 'hepinglijiedaobanshichu', 'hpljdbsc', 'h', '110101', '4', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101010001', '交通社区居委会', 'jiaotongshequjuweihui', 'jtsqjwh', 'j', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010002', '林调社区居委会', 'lintiaoshequjuweihui', 'ltsqjwh', 'l', '110101010', '5', '116.43286165549596', '39.963239660741756', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010003', '民旺社区居委会', 'minwangshequjuweihui', 'mwsqjwh', 'm', '110101010', '5', '116.42744610844085', '39.958471282224146', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010008', '安德路社区居委会', 'andelushequjuweihui', 'adlsqjwh', 'a', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010009', '二区社区居委会', 'erqushequjuweihui', 'eqsqjwh', 'e', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010011', '七区社区居委会', 'qiqushequjuweihui', 'qqsqjwh', 'q', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010013', '化工社区居委会', 'huagongshequjuweihui', 'hgsqjwh', 'h', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010014', '安德里社区居委会', 'andelishequjuweihui', 'adlsqjwh', 'a', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010015', '兴化社区居委会', 'xinghuashequjuweihui', 'xhsqjwh', 'x', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010016', '人定湖社区居委会', 'rendinghushequjuweihui', 'rdhsqjwh', 'r', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010017', '小黄庄社区居委会', 'xiaohuangzhuangshequjuweihui', 'xhzsqjwh', 'x', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010018', '总政社区居委会', 'zongzhengshequjuweihui', 'zzsqjwh', 'z', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010019', '安贞苑社区居委会', 'anzhenyuanshequjuweihui', 'azysqjwh', 'a', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010020', '地坛社区居委会', 'ditanshequjuweihui', 'dtsqjwh', 'd', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010021', '黄寺社区居委会', 'huangsishequjuweihui', 'hssqjwh', 'h', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010022', '新建路社区居委会', 'xinjianlushequjuweihui', 'xjlsqjwh', 'x', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010023', '东河沿社区居委会', 'dongheyanshequjuweihui', 'dhysqjwh', 'd', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010024', '西河沿社区居委会', 'xiheyanshequjuweihui', 'xhysqjwh', 'x', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010026', '青年湖社区居委会', 'qingnianhushequjuweihui', 'qnhsqjwh', 'q', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101010027', '和平里社区居委会', 'hepinglishequjuweihui', 'hplsqjwh', 'h', '110101010', '5', '116.4303455017625', '39.96249446905228', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101010.html');
INSERT INTO `districts` VALUES ('110101011', '前门街道办事处', 'qianmenjiedaobanshichu', 'qmjdbsc', 'q', '110101', '4', '116.41343516284238', '39.900236291453275', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101011001', '前门东大街社区居委会', 'qianmendongdajieshequjuweihui', 'qmddjsqjwh', 'q', '110101011', '5', '116.41053786526749', '39.90644200997208', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101011.html');
INSERT INTO `districts` VALUES ('110101011006', '大江社区居委会', 'dajiangshequjuweihui', 'djsqjwh', 'd', '110101011', '5', '116.41343516284238', '39.900236291453275', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101011.html');
INSERT INTO `districts` VALUES ('110101011008', '草厂西社区居委会', 'caochangxishequjuweihui', 'ccxsqjwh', 'c', '110101011', '5', '116.41635798666663', '39.90075409667776', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101011.html');
INSERT INTO `districts` VALUES ('110101011009', '草厂东社区居委会', 'caochangdongshequjuweihui', 'ccdsqjwh', 'c', '110101011', '5', '116.41636068158316', '39.900693900913296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101011.html');
INSERT INTO `districts` VALUES ('110101012', '崇文门外街道办事处', 'chongwenmenwaijiedaobanshichu', 'cwmwjdbsc', 'c', '110101', '4', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101012001', '兴隆都市馨园社区居委会', 'xinglongdushixinyuanshequjuweihui', 'xldsxysqjwh', 'x', '110101012', '5', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012002', '新世界家园社区居委会', 'xinshijiejiayuanshequjuweihui', 'xsjjysqjwh', 'x', '110101012', '5', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012003', '崇文门东大街社区居委会', 'chongwenmendongdajieshequjuweihui', 'cwmddjsqjwh', 'c', '110101012', '5', '116.43300718098857', '39.90638597033088', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012004', '崇文门西大街社区居委会', 'chongwenmenxidajieshequjuweihui', 'cwmxdjsqjwh', 'c', '110101012', '5', '116.42161846373307', '39.90681422271264', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012005', '西花市南里东区社区居委会', 'xihuashinanlidongqushequjuweihui', 'xhsnldqsqjwh', 'x', '110101012', '5', '116.43252119770767', '39.90327811937715', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012006', '西花市南里西区社区居委会', 'xihuashinanlixiqushequjuweihui', 'xhsnlxqsqjwh', 'x', '110101012', '5', '116.42834398096757', '39.90280510065069', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012007', '大桥社区居委会', 'daqiaoshequjuweihui', 'dqsqjwh', 'd', '110101012', '5', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012008', '新怡家园社区居委会', 'xinyijiayuanshequjuweihui', 'xyjysqjwh', 'x', '110101012', '5', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012009', '西花市南里南区社区居委会', 'xihuashinanlinanqushequjuweihui', 'xhsnlnqsqjwh', 'x', '110101012', '5', '116.43383452036325', '39.900713274268604', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012010', '国瑞城西区社区居委会', 'guoruichengxiqushequjuweihui', 'grcxqsqjwh', 'g', '110101012', '5', '116.42863063654396', '39.90522642368199', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012011', '国瑞城中区社区居委会', 'guoruichengzhongqushequjuweihui', 'grczqsqjwh', 'g', '110101012', '5', '116.43050989167082', '39.90509081908261', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101012012', '国瑞城东区社区居委会', 'guoruichengdongqushequjuweihui', 'grcdqsqjwh', 'g', '110101012', '5', '116.43239723154728', '39.90475457385787', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101012.html');
INSERT INTO `districts` VALUES ('110101013', '东花市街道办事处', 'donghuashijiedaobanshichu', 'dhsjdbsc', 'd', '110101', '4', '116.43798738673588', '39.90522919111997', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101013001', '东花市北里西区社区居委会', 'donghuashibeilixiqushequjuweihui', 'dhsblxqsqjwh', 'd', '110101013', '5', '116.43798738673588', '39.90522919111997', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013002', '东花市北里东区社区居委会', 'donghuashibeilidongqushequjuweihui', 'dhsbldqsqjwh', 'd', '110101013', '5', '116.44055723398627', '39.90373765917046', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013003', '花市枣苑社区居委会', 'huashizaoyuanshequjuweihui', 'hszysqjwh', 'h', '110101013', '5', '116.43798738673588', '39.90522919111997', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013004', '东花市南里社区居委会', 'donghuashinanlishequjuweihui', 'dhsnlsqjwh', 'd', '110101013', '5', '116.43991606753022', '39.90090009346457', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013005', '广渠门北里社区居委会', 'guangqumenbeilishequjuweihui', 'gqmblsqjwh', 'g', '110101013', '5', '116.43798738673588', '39.90522919111997', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013006', '广渠门外南里社区居委会', 'guangqumenwainanlishequjuweihui', 'gqmwnlsqjwh', 'g', '110101013', '5', '116.45532688033373', '39.89795247451231', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013007', '忠实里社区居委会', 'zhongshilishequjuweihui', 'zslsqjwh', 'z', '110101013', '5', '116.43798738673588', '39.90522919111997', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101013008', '东花市南里东区社区居委会', 'donghuashinanlidongqushequjuweihui', 'dhsnldqsqjwh', 'd', '110101013', '5', '116.44284182971181', '39.90071604189033', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101013.html');
INSERT INTO `districts` VALUES ('110101014', '龙潭街道办事处', 'longtanjiedaobanshichu', 'ltjdbsc', 'l', '110101', '4', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101014001', '安化楼社区居委会', 'anhualoushequjuweihui', 'ahlsqjwh', 'a', '110101014', '5', '116.44038937841529', '39.89904192477048', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014002', '夕照寺社区居委会', 'xizhaosishequjuweihui', 'xzssqjwh', 'x', '110101014', '5', '116.44551069538194', '39.89694505276684', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014006', '板厂南里社区居委会', 'banchangnanlishequjuweihui', 'bcnlsqjwh', 'b', '110101014', '5', '116.45046664688049', '39.89089442697454', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014009', '绿景苑社区居委会', 'lvjingyuanshequjuweihui', 'ljysqjwh', 'l', '110101014', '5', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014010', '华城社区居委会', 'huachengshequjuweihui', 'hcsqjwh', 'h', '110101014', '5', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014012', '左安漪园社区居委会', 'zuoanyiyuanshequjuweihui', 'zayysqjwh', 'z', '110101014', '5', '116.44784898462443', '39.880298307298865', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014013', '左安浦园社区居委会', 'zuoanpuyuanshequjuweihui', 'zapysqjwh', 'z', '110101014', '5', '116.44603527346078', '39.88027034875794', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014016', '幸福社区居委会', 'xingfushequjuweihui', 'xfsqjwh', 'x', '110101014', '5', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014017', '新家园社区居委会', 'xinjiayuanshequjuweihui', 'xjysqjwh', 'x', '110101014', '5', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014018', '龙潭北里社区居委会', 'longtanbeilishequjuweihui', 'ltblsqjwh', 'l', '110101014', '5', '116.44845702067495', '39.89824902585872', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101014019', '光明社区居委会', 'guangmingshequjuweihui', 'gmsqjwh', 'g', '110101014', '5', '116.44286518565507', '39.89335030970188', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101014.html');
INSERT INTO `districts` VALUES ('110101015', '体育馆路街道办事处', 'tiyuguanlujiedaobanshichu', 'tygljdbsc', 't', '110101', '4', '116.42883455189471', '39.89313025958401', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101015001', '东厅社区居委会', 'dongtingshequjuweihui', 'dtsqjwh', 'd', '110101015', '5', '116.43230501869009', '39.89422968313525', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015002', '葱店社区居委会', 'congdianshequjuweihui', 'cdsqjwh', 'c', '110101015', '5', '116.43034808798406', '39.89410499129086', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015003', '法华南里社区居委会', 'fahuananlishequjuweihui', 'fhnlsqjwh', 'f', '110101015', '5', '116.43529067359493', '39.891017603819705', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015004', '国家体育总局社区居委会', 'guojiatiyuzongjushequjuweihui', 'gjtyzjsqjwh', 'g', '110101015', '5', '116.43680949890712', '39.88861700932513', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015005', '南岗子社区居委会', 'nangangzishequjuweihui', 'ngzsqjwh', 'n', '110101015', '5', '116.43230501869009', '39.89422968313525', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015006', '长青园社区居委会', 'changqingyuanshequjuweihui', 'cqysqjwh', 'c', '110101015', '5', '116.43487026661626', '39.88356500311605', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015007', '双玉南街社区居委会', 'shuangyunanjieshequjuweihui', 'synjsqjwh', 's', '110101015', '5', '116.4312267906712', '39.88403445358536', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015008', '东玉北街社区居委会', 'dongyubeijieshequjuweihui', 'dybjsqjwh', 'd', '110101015', '5', '116.42883455189471', '39.89313025958401', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015009', '西利社区居委会', 'xilishequjuweihui', 'xlsqjwh', 'x', '110101015', '5', '116.43230501869009', '39.89422968313525', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101015010', '西唐社区居委会', 'xitangshequjuweihui', 'xtsqjwh', 'x', '110101015', '5', '116.43230501869009', '39.89422968313525', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101015.html');
INSERT INTO `districts` VALUES ('110101016', '天坛街道办事处', 'tiantanjiedaobanshichu', 'ttjdbsc', 't', '110101', '4', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101016001', '东晓市社区居委会', 'dongxiaoshishequjuweihui', 'dxssqjwh', 'd', '110101016', '5', '116.4230440745774', '39.89572860468498', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016002', '西园子社区居委会', 'xiyuanzishequjuweihui', 'xyzsqjwh', 'x', '110101016', '5', '116.42284914228173', '39.89558744547781', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016003', '东半壁街社区居委会', 'dongbanbijieshequjuweihui', 'dbbjsqjwh', 'd', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016004', '西草市社区居委会', 'xicaoshishequjuweihui', 'xcssqjwh', 'x', '110101016', '5', '116.40570677823483', '39.8963375233964', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016005', '红庙街社区居委会', 'hongmiaojieshequjuweihui', 'hmjsqjwh', 'h', '110101016', '5', '116.4085775793904', '39.894131054645314', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016006', '东市场社区居委会', 'dongshichangshequjuweihui', 'dscsqjwh', 'd', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016007', '西里北区社区居委会', 'xilibeiqushequjuweihui', 'xlbqsqjwh', 'x', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016008', '永内大街社区居委会', 'yongneidajieshequjuweihui', 'yndjsqjwh', 'y', '110101016', '5', '116.40755818589089', '39.87970170311366', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016009', '东里南区社区居委会', 'donglinanqushequjuweihui', 'dlnqsqjwh', 'd', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016010', '东里北区社区居委会', 'donglibeiqushequjuweihui', 'dlbqsqjwh', 'd', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016011', '永内东街西里社区居委会', 'yongneidongjiexilishequjuweihui', 'yndjxlsqjwh', 'y', '110101016', '5', '116.41007254301331', '39.87978406525562', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016012', '永内东街中里社区居委会', 'yongneidongjiezhonglishequjuweihui', 'yndjzlsqjwh', 'y', '110101016', '5', '116.41196078119529', '39.87974184601884', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016013', '永内东街东里社区居委会', 'yongneidongjiedonglishequjuweihui', 'yndjdlsqjwh', 'y', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016014', '金鱼池西区社区居委会', 'jinyuchixiqushequjuweihui', 'jycxqsqjwh', 'j', '110101016', '5', '116.41384495454483', '39.89623607909398', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016015', '金鱼池中区社区居委会', 'jinyuchizhongqushequjuweihui', 'jyczqsqjwh', 'j', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101016016', '金鱼池东区社区居委会', 'jinyuchidongqushequjuweihui', 'jycdqsqjwh', 'j', '110101016', '5', '116.40548399846834', '39.895610280075296', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101016.html');
INSERT INTO `districts` VALUES ('110101017', '永定门外街道办事处', 'yongdingmenwaijiedaobanshichu', 'ydmwjdbsc', 'y', '110101', '4', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110101.html');
INSERT INTO `districts` VALUES ('110101017001', '彭庄社区居委会', 'pengzhuangshequjuweihui', 'pzsqjwh', 'p', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017002', '永建里社区居委会', 'yongjianlishequjuweihui', 'yjlsqjwh', 'y', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017003', '松林里社区居委会', 'songlinlishequjuweihui', 'sllsqjwh', 's', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017004', '革新里社区居委会', 'gexinlishequjuweihui', 'gxlsqjwh', 'g', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017005', '管村社区居委会', 'guancunshequjuweihui', 'gcsqjwh', 'g', '110101017', '5', '116.40277470905025', '39.87021000967285', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017006', '桃园社区居委会', 'taoyuanshequjuweihui', 'tysqjwh', 't', '110101017', '5', '116.40782767754388', '39.87633099882288', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017007', '民主北街社区居委会', 'minzhubeijieshequjuweihui', 'mzbjsqjwh', 'm', '110101017', '5', '116.40844867614294', '39.872891670123394', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017008', '琉璃井社区居委会', 'liulijingshequjuweihui', 'lljsqjwh', 'l', '110101017', '5', '116.41423798566308', '39.8716567253482', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017009', '桃杨路社区居委会', 'taoyanglushequjuweihui', 'tylsqjwh', 't', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017010', '杨家园社区居委会', 'yangjiayuanshequjuweihui', 'yjysqjwh', 'y', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017011', '李村社区居委会', 'licunshequjuweihui', 'lcsqjwh', 'l', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017012', '宝华里社区居委会', 'baohualishequjuweihui', 'bhlsqjwh', 'b', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017013', '定安里社区居委会', 'dinganlishequjuweihui', 'dalsqjwh', 'd', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017014', '安乐林社区居委会', 'anlelinshequjuweihui', 'allsqjwh', 'a', '110101017', '5', '116.41499435890249', '39.86936965448497', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017015', '景泰社区居委会', 'jingtaishequjuweihui', 'jtsqjwh', 'j', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017016', '永铁苑社区居委会', 'yongtieyuanshequjuweihui', 'ytysqjwh', 'y', '110101017', '5', '116.39915543615055', '39.875182014228024', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017017', '天天家园社区居委会', 'tiantianjiayuanshequjuweihui', 'ttjysqjwh', 't', '110101017', '5', '116.41095018749655', '39.87136946128572', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017018', '富莱茵社区居委会', 'fulaiyinshequjuweihui', 'flysqjwh', 'f', '110101017', '5', '116.41349329039532', '39.86664015908913', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017019', '革新西里社区居委会', 'gexinxilishequjuweihui', 'gxxlsqjwh', 'g', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110101017020', '西革新里社区居委会', 'xigexinlishequjuweihui', 'xgxlsqjwh', 'x', '110101017', '5', '116.40840708459781', '39.87204158807106', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/01/110101017.html');
INSERT INTO `districts` VALUES ('110102', '西城区', 'xichengqu', 'xcq', 'x', '1101', '3', '116.37251358116619', '39.91812360584148', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/1101.html');
INSERT INTO `districts` VALUES ('110102001', '西长安街街道办事处', 'xichanganjiejiedaobanshichu', 'xcajjdbsc', 'x', '110102', '4', '116.38971313403678', '39.911070084608845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102001001', '南北长街社区居委会', 'nanbeichangjieshequjuweihui', 'nbcjsqjwh', 'n', '110102001', '5', '116.39827102563021', '39.91680485463941', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001004', '府右街南社区居委会', 'fuyoujienanshequjuweihui', 'fyjnsqjwh', 'f', '110102001', '5', '116.38565289014866', '39.91866820224908', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001006', '光明社区居委会', 'guangmingshequjuweihui', 'gmsqjwh', 'g', '110102001', '5', '116.38971313403678', '39.911070084608845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001007', '西交民巷社区居委会', 'xijiaominxiangshequjuweihui', 'xjmxsqjwh', 'x', '110102001', '5', '116.39388328111251', '39.909789775814716', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001011', '北新华街社区居委会', 'beixinhuajieshequjuweihui', 'bxhjsqjwh', 'b', '110102001', '5', '116.39030526379165', '39.91128180850044', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001012', '六部口社区居委会', 'liubukoushequjuweihui', 'lbksqjwh', 'l', '110102001', '5', '116.388797075315', '39.911358097920406', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001013', '和平门社区居委会', 'hepingmenshequjuweihui', 'hpmsqjwh', 'h', '110102001', '5', '116.3927489682874', '39.90693344361365', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001018', '钟声社区居委会', 'zhongshengshequjuweihui', 'zssqjwh', 'z', '110102001', '5', '116.38971313403678', '39.911070084608845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001019', '太仆寺街社区居委会', 'taipusijieshequjuweihui', 'tpsjsqjwh', 't', '110102001', '5', '116.3857224603172', '39.91847058523446', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001023', '西黄城根南街社区居委会', 'xihuangchenggennanjieshequjuweihui', 'xhcgnjsqjwh', 'x', '110102001', '5', '116.38437781374847', '39.92178633761855', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001026', '义达里社区居委会', 'yidalishequjuweihui', 'ydlsqjwh', 'y', '110102001', '5', '116.38971313403678', '39.911070084608845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001027', '西单北社区居委会', 'xidanbeishequjuweihui', 'xdbsqjwh', 'x', '110102001', '5', '116.38201126291635', '39.92256535731138', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102001028', '未英社区居委会', 'weiyingshequjuweihui', 'wysqjwh', 'w', '110102001', '5', '116.38448970039465', '39.90976279510009', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102001.html');
INSERT INTO `districts` VALUES ('110102003', '新街口街道办事处', 'xinjiekoujiedaobanshichu', 'xjkjdbsc', 'x', '110102', '4', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102003015', '西里二区社区居委会', 'xilierqushequjuweihui', 'xleqsqjwh', 'x', '110102003', '5', '116.37620688432128', '39.94923942788812', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003020', '西里一区社区居委会', 'xiliyiqushequjuweihui', 'xlyqsqjwh', 'x', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003025', '西里四区社区居委会', 'xilisiqushequjuweihui', 'xlsqsqjwh', 'x', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003026', '北草厂社区居委会', 'beicaochangshequjuweihui', 'bccsqjwh', 'b', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003028', '西里三区社区居委会', 'xilisanqushequjuweihui', 'xlsqsqjwh', 'x', '110102003', '5', '116.37352677995088', '39.95112962713133', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003032', '玉桃园社区居委会', 'yutaoyuanshequjuweihui', 'ytysqjwh', 'y', '110102003', '5', '116.36750094658996', '39.94906786474327', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003033', '西四北头条社区居委会', 'xisibeitoutiaoshequjuweihui', 'xsbttsqjwh', 'x', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003034', '西四北三条社区居委会', 'xisibeisantiaoshequjuweihui', 'xsbstsqjwh', 'x', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003035', '西四北六条社区居委会', 'xisibeiliutiaoshequjuweihui', 'xsbltsqjwh', 'x', '110102003', '5', '116.37522996719781', '39.93594426787037', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003036', '育德社区居委会', 'yudeshequjuweihui', 'ydsqjwh', 'y', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003037', '前公用社区居委会', 'qiangongyongshequjuweihui', 'qgysqjwh', 'q', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003038', '半壁街社区居委会', 'banbijieshequjuweihui', 'bbjsqjwh', 'b', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003039', '南小街社区居委会', 'nanxiaojieshequjuweihui', 'nxjsqjwh', 'n', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003040', '冠英园社区居委会', 'guanyingyuanshequjuweihui', 'gyysqjwh', 'g', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003042', '大觉社区居委会', 'dajueshequjuweihui', 'djsqjwh', 'd', '110102003', '5', '116.37273792128933', '39.941094988075456', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003043', '富国里社区居委会', 'fuguolishequjuweihui', 'fglsqjwh', 'f', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003045', '安平巷社区居委会', 'anpingxiangshequjuweihui', 'apxsqjwh', 'a', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003046', '官园社区居委会', 'guanyuanshequjuweihui', 'gysqjwh', 'g', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003048', '宫门口社区居委会', 'gongmenkoushequjuweihui', 'gmksqjwh', 'g', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003049', '北顺社区居委会', 'beishunshequjuweihui', 'bssqjwh', 'b', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102003050', '中直社区居委会', 'zhongzhishequjuweihui', 'zzsqjwh', 'z', '110102003', '5', '116.37318551997578', '39.94630015226431', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102003.html');
INSERT INTO `districts` VALUES ('110102007', '月坛街道办事处', 'yuetanjiedaobanshichu', 'ytjdbsc', 'y', '110102', '4', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102007003', '月坛社区居委会', 'yuetanshequjuweihui', 'ytsqjwh', 'y', '110102007', '5', '116.3573856348864', '39.92400005141455', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007004', '社会路社区居委会', 'shehuilushequjuweihui', 'shlsqjwh', 's', '110102007', '5', '116.35521841535203', '39.92046637973', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007005', '铁道部住宅区第三社区居委会', 'tiedaobuzhuzhaiqudisanshequjuweihui', 'tdbzzqdssqjwh', 't', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007006', '三里河一区社区居委会', 'sanliheyiqushequjuweihui', 'slhyqsqjwh', 's', '110102007', '5', '116.34916383621477', '39.921142171527165', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007010', '南沙沟社区居委会', 'nanshagoushequjuweihui', 'nsgsqjwh', 'n', '110102007', '5', '116.34315479398043', '39.92012228533747', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007011', '复兴门北大街社区居委会', 'fuxingmenbeidajieshequjuweihui', 'fxmbdjsqjwh', 'f', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007013', '铁道部住宅区第二、二社区居委会', 'tiedaobuzhuzhaiqudier、ershequjuweihui', 'tdbzzqde、esqjwh', 't', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007016', '复兴门外大街甲7号院社区居委会', 'fuxingmenwaidajiejia7haoyuanshequjuweihui', 'fxmwdjj7hysqjwh', 'f', '110102007', '5', '116.35633159553998', '39.914978244850815', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007018', '三里河二区社区居委会', 'sanliheerqushequjuweihui', 'slheqsqjwh', 's', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007020', '三里河三区第一社区居委会', 'sanlihesanqudiyishequjuweihui', 'slhsqdysqjwh', 's', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007022', '三里河三区第三社区居委会', 'sanlihesanqudisanshequjuweihui', 'slhsqdssqjwh', 's', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007024', '南礼士路社区居委会', 'nanlishilushequjuweihui', 'nlslsqjwh', 'n', '110102007', '5', '116.3570705093135', '39.91836827430438', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007025', '木樨地社区居委会', 'muxidishequjuweihui', 'mxdsqjwh', 'm', '110102007', '5', '116.34525441063535', '39.91190876617478', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007028', '复兴门外社区居委会', 'fuxingmenwaishequjuweihui', 'fxmwsqjwh', 'f', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007029', '全国总工会住宅区社区居委会', 'quanguozonggonghuizhuzhaiqushequjuweihui', 'qgzghzzqsqjwh', 'q', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007030', '白云观社区居委会', 'baiyunguanshequjuweihui', 'bygsqjwh', 'b', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007032', '真武庙社区居委会', 'zhenwumiaoshequjuweihui', 'zwmsqjwh', 'z', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007033', '广电总局住宅区第二社区居委会', 'guangdianzongjuzhuzhaiqudiershequjuweihui', 'gdzjzzqdesqjwh', 'g', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007034', '西便门社区居委会', 'xibianmenshequjuweihui', 'xbmsqjwh', 'x', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007035', '铁道部住宅区第二、一社区居委会', 'tiedaobuzhuzhaiqudier、yishequjuweihui', 'tdbzzqde、ysqjwh', 't', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007037', '广电总局住宅区第一社区居委会', 'guangdianzongjuzhuzhaiqudiyishequjuweihui', 'gdzjzzqdysqjwh', 'g', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007038', '汽车局河南社区居委会', 'qichejuhenanshequjuweihui', 'qcjhnsqjwh', 'q', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007039', '汽车局河北社区居委会', 'qichejuhebeishequjuweihui', 'qcjhbsqjwh', 'q', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007043', '公安住宅区社区居委会', 'gonganzhuzhaiqushequjuweihui', 'gazzqsqjwh', 'g', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007045', '铁道部住宅区第四社区居委会', 'tiedaobuzhuzhaiqudisishequjuweihui', 'tdbzzqdssqjwh', 't', '110102007', '5', '116.35121107447202', '39.92065037284028', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102007048', '三里河社区居民委员会', 'sanliheshequjuminweiyuanhui', 'slhsqjmwyh', 's', '110102007', '5', '116.3454396879434', '39.921445647376544', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102007.html');
INSERT INTO `districts` VALUES ('110102009', '展览路街道办事处', 'zhanlanlujiedaobanshichu', 'zlljdbsc', 'z', '110102', '4', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102009001', '文兴街社区居委会', 'wenxingjieshequjuweihui', 'wxjsqjwh', 'w', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009002', '朝阳庵社区居委会', 'chaoyanganshequjuweihui', 'cyasqjwh', 'c', '110102009', '5', '116.34127401892064', '39.93955612039144', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009005', '三塔社区居委会', 'santashequjuweihui', 'stsqjwh', 's', '110102009', '5', '116.35174197302841', '39.936087417893596', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009008', '新华南社区居委会', 'xinhuananshequjuweihui', 'xhnsqjwh', 'x', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009009', '百万庄东社区居委会', 'baiwanzhuangdongshequjuweihui', 'bwzdsqjwh', 'b', '110102009', '5', '116.3564183790387', '39.93434597522055', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009011', '百万庄西社区居委会', 'baiwanzhuangxishequjuweihui', 'bwzxsqjwh', 'b', '110102009', '5', '116.3564183790387', '39.93434597522055', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009013', '车公庄社区居委会', 'chegongzhuangshequjuweihui', 'cgzsqjwh', 'c', '110102009', '5', '116.3531361431799', '39.94034167114436', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009014', '新华东社区居委会', 'xinhuadongshequjuweihui', 'xhdsqjwh', 'x', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009016', '新华里社区居委会', 'xinhualishequjuweihui', 'xhlsqjwh', 'x', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009017', '榆树馆社区居委会', 'yushuguanshequjuweihui', 'ysgsqjwh', 'y', '110102009', '5', '116.35265291410369', '39.94256717786429', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009020', '德宝社区居委会', 'debaoshequjuweihui', 'dbsqjwh', 'd', '110102009', '5', '116.35390524989991', '39.94660082973279', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009023', '团结社区居委会', 'tuanjieshequjuweihui', 'tjsqjwh', 't', '110102009', '5', '116.35663414483574', '39.94283518135599', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009026', '北营房西里社区居委会', 'beiyingfangxilishequjuweihui', 'byfxlsqjwh', 'b', '110102009', '5', '116.35389161811379', '39.932012710859446', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009028', '北营房东里社区居委会', 'beiyingfangdonglishequjuweihui', 'byfdlsqjwh', 'b', '110102009', '5', '116.35841410396647', '39.93197725983532', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009031', '黄瓜园社区居委会', 'huangguayuanshequjuweihui', 'hgysqjwh', 'h', '110102009', '5', '116.34401385072607', '39.929543009565904', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009032', '露园社区居委会', 'louyuanshequjuweihui', 'lysqjwh', 'l', '110102009', '5', '116.3490578361646', '39.93257980964932', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009035', '阜外西社区居委会', 'fuwaixishequjuweihui', 'fwxsqjwh', 'f', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009036', '洪茂沟社区居委会', 'hongmaogoushequjuweihui', 'hmgsqjwh', 'h', '110102009', '5', '116.3479836002154', '39.924606526434175', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009038', '阜外东社区居委会', 'fuwaidongshequjuweihui', 'fwdsqjwh', 'f', '110102009', '5', '116.35905058665759', '39.92782018239523', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009039', '南营房社区居委会', 'nanyingfangshequjuweihui', 'nyfsqjwh', 'n', '110102009', '5', '116.35682294170478', '39.92577180207853', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009041', '万明园社区居委会', 'wanmingyuanshequjuweihui', 'wmysqjwh', 'w', '110102009', '5', '116.36110030783125', '39.92561226955979', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102009042', '滨河社区居委会', 'binheshequjuweihui', 'bhsqjwh', 'b', '110102009', '5', '116.348945671942', '39.938475880669195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102009.html');
INSERT INTO `districts` VALUES ('110102010', '德胜街道办事处', 'deshengjiedaobanshichu', 'dsjdbsc', 'd', '110102', '4', '116.37251358116619', '39.91812360584148', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102010002', '安德路南社区居委会', 'andelunanshequjuweihui', 'adlnsqjwh', 'a', '110102010', '5', '116.40079708048698', '39.957831663516195', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010005', '安德路北社区居委会', 'andelubeishequjuweihui', 'adlbsqjwh', 'a', '110102010', '5', '116.38690883713303', '39.95951223781531', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010011', '德胜里社区居委会', 'deshenglishequjuweihui', 'dslsqjwh', 'd', '110102010', '5', '116.383175454281', '39.961139900226385', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010013', '德外大街西社区居委会', 'dewaidajiexishequjuweihui', 'dwdjxsqjwh', 'd', '110102010', '5', '116.38149025829684', '39.95731937775366', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010017', '新明家园社区居委会', 'xinmingjiayuanshequjuweihui', 'xmjysqjwh', 'x', '110102010', '5', '116.3821544941367', '39.96578244671397', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010019', '新风中直社区居委会', 'xinfengzhongzhishequjuweihui', 'xfzzsqjwh', 'x', '110102010', '5', '116.38411924638878', '39.96670340775536', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010021', '新外大街北社区居委会', 'xinwaidajiebeishequjuweihui', 'xwdjbsqjwh', 'x', '110102010', '5', '116.3772642869235', '39.96512404173272', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010022', '新康社区居委会', 'xinkangshequjuweihui', 'xksqjwh', 'x', '110102010', '5', '116.37914221974466', '39.96489814919704', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010024', '马甸社区居委会', 'madianshequjuweihui', 'mdsqjwh', 'm', '110102010', '5', '116.3846164998106', '39.972506868483194', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010025', '人定湖西里社区居委会', 'rendinghuxilishequjuweihui', 'rdhxlsqjwh', 'r', '110102010', '5', '116.39101449036465', '39.963055966773425', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010026', '黄寺大街西社区居委会', 'huangsidajiexishequjuweihui', 'hsdjxsqjwh', 'h', '110102010', '5', '116.38703725349889', '39.96661420126905', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010029', '双旗杆社区居委会', 'shuangqiganshequjuweihui', 'sqgsqjwh', 's', '110102010', '5', '116.39427494231485', '39.97269348304592', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010031', '北广社区居委会', 'beiguangshequjuweihui', 'bgsqjwh', 'b', '110102010', '5', '116.39487807182068', '39.97328984529958', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010033', '黄寺大街24号社区居委会', 'huangsidajie24haoshequjuweihui', 'hsdj24hsqjwh', 'h', '110102010', '5', '116.39320452146916', '39.966160000505425', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010036', '裕中西里社区居委会', 'yuzhongxilishequjuweihui', 'yzxlsqjwh', 'y', '110102010', '5', '116.39039695742827', '39.97677957048906', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010038', '裕中东里社区居委会', 'yuzhongdonglishequjuweihui', 'yzdlsqjwh', 'y', '110102010', '5', '116.39375212850803', '39.976569466450144', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010039', '阳光丽景社区居委会', 'yangguanglijingshequjuweihui', 'ygljsqjwh', 'y', '110102010', '5', '116.3930342243038', '39.972309015159176', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010043', '德外大街东社区居民委员会', 'dewaidajiedongshequjuminweiyuanhui', 'dwdjdsqjmwyh', 'd', '110102010', '5', '116.38567135122521', '39.96368246414445', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010044', '六铺炕北小街社区居民委员会', 'liupukangbeixiaojieshequjuminweiyuanhui', 'lpkbxjsqjmwyh', 'l', '110102010', '5', '116.40015400603004', '39.963090743616306', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102010045', '六铺炕南小街居民委员会', 'liupukangnanxiaojiejuminweiyuanhui', 'lpknxjjmwyh', 'l', '110102010', '5', '116.39655789863282', '39.95887253787568', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102010.html');
INSERT INTO `districts` VALUES ('110102011', '金融街街道办事处', 'jinrongjiejiedaobanshichu', 'jrjjdbsc', 'j', '110102', '4', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102011001', '京畿道社区居委会', 'jingjidaoshequjuweihui', 'jjdsqjwh', 'j', '110102011', '5', '116.3744196956278', '39.91543404414209', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011003', '西太平街社区居委会', 'xitaipingjieshequjuweihui', 'xtpjsqjwh', 'x', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011004', '二龙路社区居委会', 'erlonglushequjuweihui', 'ellsqjwh', 'e', '110102011', '5', '116.37140229819944', '39.91585437816876', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011005', '东太平街社区居委会', 'dongtaipingjieshequjuweihui', 'dtpjsqjwh', 'd', '110102011', '5', '116.3724128811185', '39.91035498473277', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011007', '温家街社区居委会', 'wenjiajieshequjuweihui', 'wjjsqjwh', 'w', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011008', '受水河社区居委会', 'shoushuiheshequjuweihui', 'sshsqjwh', 's', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011009', '文昌社区居委会', 'wenchangshequjuweihui', 'wcsqjwh', 'w', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011010', '手帕社区居委会', 'shoupashequjuweihui', 'spsqjwh', 's', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011011', '新文化街社区居委会', 'xinwenhuajieshequjuweihui', 'xwhjsqjwh', 'x', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011012', '新华社社区居委会', 'xinhuasheshequjuweihui', 'xhssqjwh', 'x', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011013', '中央音乐学院社区居委会', 'zhongyangyinyuexueyuanshequjuweihui', 'zyyyxysqjwh', 'z', '110102011', '5', '116.36627475956884', '39.90712762702679', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011014', '教育部社区居委会', 'jiaoyubushequjuweihui', 'jybsqjwh', 'j', '110102011', '5', '116.37556330321999', '39.91979878746418', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011015', '民康社区居委会', 'minkangshequjuweihui', 'mksqjwh', 'm', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011018', '丰汇园社区居委会', 'fenghuiyuanshequjuweihui', 'fhysqjwh', 'f', '110102011', '5', '116.37211015216165', '39.92111934550656', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011019', '宏汇园社区居委会', 'honghuiyuanshequjuweihui', 'hhysqjwh', 'h', '110102011', '5', '116.37665444348228', '39.922663213160526', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011020', '丰融园社区居委会', 'fengrongyuanshequjuweihui', 'frysqjwh', 'f', '110102011', '5', '116.37433483001135', '39.92325613296299', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011021', '丰盛社区居委会', 'fengshengshequjuweihui', 'fssqjwh', 'f', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011022', '大院社区居委会', 'dayuanshequjuweihui', 'dysqjwh', 'd', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102011023', '砖塔社区居委会', 'zhuantashequjuweihui', 'ztsqjwh', 'z', '110102011', '5', '116.36936762543968', '39.91919432350461', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102011.html');
INSERT INTO `districts` VALUES ('110102012', '什刹海街道办事处', 'shenchahaijiedaobanshichu', 'schjdbsc', 's', '110102', '4', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102012001', '西四北社区居委会', 'xisibeishequjuweihui', 'xsbsqjwh', 'x', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012004', '西什库社区居委会', 'xishenkushequjuweihui', 'xsksqjwh', 'x', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012005', '爱民街社区居委会', 'aiminjieshequjuweihui', 'amjsqjwh', 'a', '110102012', '5', '116.38779097314382', '39.938197289749894', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012006', '大红罗社区居委会', 'dahongluoshequjuweihui', 'dhlsqjwh', 'd', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012007', '西巷社区居委会', 'xixiangshequjuweihui', 'xxsqjwh', 'x', '110102012', '5', '116.3822080043993', '39.942026840464045', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012008', '护国寺社区居委会', 'huguosishequjuweihui', 'hgssqjwh', 'h', '110102012', '5', '116.38561985586185', '39.94361810184828', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012011', '前铁社区居委会', 'qiantieshequjuweihui', 'qtsqjwh', 'q', '110102012', '5', '116.38604466723243', '39.941197053659366', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012012', '柳荫街社区居委会', 'liuyinjieshequjuweihui', 'lyjsqjwh', 'l', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012014', '兴华社区居委会', 'xinghuashequjuweihui', 'xhsqjwh', 'x', '110102012', '5', '116.38731487122354', '39.94000560036792', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012015', '松树街社区居委会', 'songshujieshequjuweihui', 'ssjsqjwh', 's', '110102012', '5', '116.38679565063877', '39.945471038759', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012018', '白米社区居委会', 'baimishequjuweihui', 'bmsqjwh', 'b', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012019', '景山社区居委会', 'jingshanshequjuweihui', 'jssqjwh', 'j', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012020', '米粮库社区居委会', 'miliangkushequjuweihui', 'mlksqjwh', 'm', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012022', '旧鼓楼社区居委会', 'jiuguloushequjuweihui', 'jglsqjwh', 'j', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012023', '双寺社区居委会', 'shuangsishequjuweihui', 'sssqjwh', 's', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012024', '鼓西社区居委会', 'guxishequjuweihui', 'gxsqjwh', 'g', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012026', '后海社区居委会', 'houhaishequjuweihui', 'hhsqjwh', 'h', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012029', '苇坑社区居委会', 'weikengshequjuweihui', 'wksqjwh', 'w', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012031', '后海西沿社区居委会', 'houhaixiyanshequjuweihui', 'hhxysqjwh', 'h', '110102012', '5', '116.3870617745444', '39.94890957480634', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012032', '西海社区居委会', 'xihaishequjuweihui', 'xhsqjwh', 'x', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012033', '四环社区居委会', 'sihuanshequjuweihui', 'shsqjwh', 's', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102012035', '前海社区居民委员会', 'qianhaishequjuminweiyuanhui', 'qhsqjmwyh', 'q', '110102012', '5', '116.38839141042806', '39.93978008930574', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102012.html');
INSERT INTO `districts` VALUES ('110102013', '大栅栏街道办事处', 'dazhalanjiedaobanshichu', 'dzljdbsc', 'd', '110102', '4', '116.39956057193557', '39.899197292529024', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102013001', '前门西河沿社区居委会', 'qianmenxiheyanshequjuweihui', 'qmxhysqjwh', 'q', '110102013', '5', '116.39179382249628', '39.905045156248455', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013002', '延寿街社区居委会', 'yanshoujieshequjuweihui', 'ysjsqjwh', 'y', '110102013', '5', '116.39548316322576', '39.9036704138321', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013003', '三井社区居委会', 'sanjingshequjuweihui', 'sjsqjwh', 's', '110102013', '5', '116.39609401097255', '39.90174143798891', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013004', '大栅栏西街社区居委会', 'dazhalanxijieshequjuweihui', 'dzlxjsqjwh', 'd', '110102013', '5', '116.39848979176766', '39.902020962987386', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013005', '石头社区居委会', 'shitoushequjuweihui', 'stsqjwh', 's', '110102013', '5', '116.39956057193557', '39.899197292529024', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013006', '铁树斜街社区居委会', 'tieshuxiejieshequjuweihui', 'tsxjsqjwh', 't', '110102013', '5', '116.39408899307428', '39.89951765114049', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013007', '百顺社区居委会', 'baishunshequjuweihui', 'bssqjwh', 'b', '110102013', '5', '116.39553975647289', '39.89707513807674', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013008', '大安澜营社区居委会', 'daanlanyingshequjuweihui', 'dalysqjwh', 'd', '110102013', '5', '116.39219805997577', '39.90001892547764', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102013009', '煤市街东社区居委会', 'meishijiedongshequjuweihui', 'msjdsqjwh', 'm', '110102013', '5', '116.39956057193557', '39.899197292529024', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102013.html');
INSERT INTO `districts` VALUES ('110102014', '天桥街道办事处', 'tianqiaojiedaobanshichu', 'tqjdbsc', 't', '110102', '4', '116.4027693192172', '39.8902688512384', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102014001', '留学路社区居委会', 'liuxuelushequjuweihui', 'lxlsqjwh', 'l', '110102014', '5', '116.4016626068289', '39.89358350669109', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014002', '香厂路社区居委会', 'xiangchanglushequjuweihui', 'xclsqjwh', 'x', '110102014', '5', '116.39784242520699', '39.89331740713387', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014003', '天桥小区社区居委会', 'tianqiaoxiaoqushequjuweihui', 'tqxqsqjwh', 't', '110102014', '5', '116.4007625047079', '39.89038718514309', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014004', '禄长街社区居委会', 'luchangjieshequjuweihui', 'lcjsqjwh', 'l', '110102014', '5', '116.3969886415147', '39.88869366978252', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014005', '先农坛社区居委会', 'xiannongtanshequjuweihui', 'xntsqjwh', 'x', '110102014', '5', '116.40167248818952', '39.88560037980619', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014006', '永安路社区居委会', 'yonganlushequjuweihui', 'yalsqjwh', 'y', '110102014', '5', '116.4027693192172', '39.8902688512384', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014007', '虎坊路社区居委会', 'hufanglushequjuweihui', 'hflsqjwh', 'h', '110102014', '5', '116.39355360299032', '39.891681232533905', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102014008', '太平街社区居委会', 'taipingjieshequjuweihui', 'tpjsqjwh', 't', '110102014', '5', '116.4027693192172', '39.8902688512384', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102014.html');
INSERT INTO `districts` VALUES ('110102015', '椿树街道办事处', 'chunshujiedaobanshichu', 'csjdbsc', 'c', '110102', '4', '116.3834280407226', '39.905255776299676', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102015001', '宣武门外东大街社区居委会', 'xuanwumenwaidongdajieshequjuweihui', 'xwmwddjsqjwh', 'x', '110102015', '5', '116.38284939453344', '39.905537759748746', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015002', '琉璃厂西街社区居委会', 'liulichangxijieshequjuweihui', 'llcxjsqjwh', 'l', '110102015', '5', '116.3903098217938', '39.899350206870984', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015003', '椿树园社区居委会', 'chunshuyuanshequjuweihui', 'csysqjwh', 'c', '110102015', '5', '116.38492717517802', '39.90088555850682', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015004', '四川营社区居委会', 'sichuanyingshequjuweihui', 'scysqjwh', 's', '110102015', '5', '116.38642195554661', '39.896848180565875', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015005', '红线社区居委会', 'hongxianshequjuweihui', 'hxsqjwh', 'h', '110102015', '5', '116.3877433629518', '39.89770687862208', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015006', '梁家园社区居委会', 'liangjiayuanshequjuweihui', 'ljysqjwh', 'l', '110102015', '5', '116.38905578730187', '39.89858424786754', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102015007', '香炉营社区居委会', 'xiangluyingshequjuweihui', 'xlysqjwh', 'x', '110102015', '5', '116.38748554927042', '39.90449443237813', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102015.html');
INSERT INTO `districts` VALUES ('110102016', '陶然亭街道办事处', 'taorantingjiedaobanshichu', 'trtjdbsc', 't', '110102', '4', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102016001', '米市社区居委会', 'mishishequjuweihui', 'mssqjwh', 'm', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016003', '粉房琉璃街社区居委会', 'fenfangliulijieshequjuweihui', 'fflljsqjwh', 'f', '110102016', '5', '116.38775807000961', '39.891853645466405', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016004', '福州馆社区居委会', 'fuzhouguanshequjuweihui', 'fzgsqjwh', 'f', '110102016', '5', '116.38954356719378', '39.8921158054925', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016006', '黑窑厂社区居委会', 'heiyaochangshequjuweihui', 'hycsqjwh', 'h', '110102016', '5', '116.38840900733469', '39.8878779086456', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016007', '龙泉社区居委会', 'longquanshequjuweihui', 'lqsqjwh', 'l', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016008', '红土店社区居委会', 'hongtudianshequjuweihui', 'htdsqjwh', 'h', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016012', '南华里社区居委会', 'nanhualishequjuweihui', 'nhlsqjwh', 'n', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016013', '新兴里居民委员会', 'xinxinglijuminweiyuanhui', 'xxljmwyh', 'x', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016014', '壹瓶社区居民委员会', 'yipingshequjuminweiyuanhui', 'ypsqjmwyh', 'y', '110102016', '5', '116.391138059474', '39.88398786265325', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102016015', '大吉巷社区居民委员会', 'dajixiangshequjuminweiyuanhui', 'djxsqjmwyh', 'd', '110102016', '5', '116.38907661721005', '39.88675308716845', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102016.html');
INSERT INTO `districts` VALUES ('110102017', '广安门内街道办事处', 'guanganmenneijiedaobanshichu', 'gamnjdbsc', 'g', '110102', '4', '116.37184280745882', '39.90214648234535', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/110102.html');
INSERT INTO `districts` VALUES ('110102017001', '西便门西里社区居委会', 'xibianmenxilishequjuweihui', 'xbmxlsqjwh', 'x', '110102017', '5', '116.37184280745882', '39.90214648234535', 'http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/2018/11/01/02/110102017.html');

文章内容有限,详细sql请下载数据;https://download.csdn.net/download/qq_38765404/11159752

Mysql 2018国家统计局区划和城乡划分数据库(包含经纬度数据,以及数据来源,提供大家参考)相关推荐

  1. 抓取国家统计局区划、城乡划分代码的简易python爬虫实现

    抓取国家统计局区划.城乡划分代码的简易python爬虫实现 免责声明 本篇文章仅用于学习交流,并不针对任何网站.软件.个人. 概要说明 本篇文章介绍一个简易python爬虫的开发,对国家统计局区划.城 ...

  2. 项目系统涉及行政区划(区划和城乡划分代码)更新最新数据问题

    一个项目需求,收到一份excel数据(据说)有今年最新的行政区划数据,只有两个字段信息: 数据同步更新到项目系统相关的表中. 分析excel数据和目前项目的数据和表结构,得出一定规律,写好导入代码,导 ...

  3. vba 抓取 统计用区划和城乡划分代码 到 电子表格

    需要 用 到 统计用区划和城乡划分代码  数据,可以 国家统计局的是一个个页面,需要把数据爬出来. 哎,想当年VBA 写了那么多东西,现在连定义数组,变量赋值都忘了怎么弄,无奈边写边查,总算整出来一个 ...

  4. MySQL federated存储引擎--访问在远程数据库的表中的数据,而不是本地的表

    一.FEDERATED简介 federated就像他的名字所说"联盟",意思就是:把两个不同区域的数据库联系起来,以致可以访问在远程数据库的表中的数据,而不是本地的表. 二.安装F ...

  5. mysql 每条记录大小_计算数据库中各个表的数据量和每行记录所占用空间

    很多时候我们都需要计算数据库中各个表的数据量和每行记录所占用空间 这里共享一个脚本 CREATE TABLE #tablespaceinfo ( nameinfo VARCHAR(500) , row ...

  6. oracle 设置查询条数,SQL、MySQL、Oracle、 Sqlite、Informix数据库查询指定条数数据的方法...

    SQL查询前10条的方法为: select top X * from table_name --查询前X条记录,可以改成需要的数字,比如前10条. select top X * from table_ ...

  7. MySQL存个人信息可以吗_mysql数据库中,在修改数据时能否保存操作人员的信息,比如姓名或id,如果能,怎么操作。...

    满意答案 yuliuyifei 2015.04.15 采纳率:50%    等级:8 已帮助:464人 您好,"用mysql作为数据库开发" 在数据枝姿访问这一层,必须是mysql ...

  8. mysql从只有一个备份文件(多个数据库的备份)中恢复数据到指定数据库

    mysql -uroot -p 要恢复的数据库的名字 --one-database<备份文件 转载于:https://www.cnblogs.com/itfenqing/p/4429398.ht ...

  9. mysql添加自团_Mysql入门基础 数据库创建篇

    1.创建数据表---基础(高手跳过) 正统方法:create [TEMPORARY] table 表名 [if not exists] (创建的列项定义) [表的选项] [分区的选项];#正统的创建方 ...

  10. 获取全国统计用区划代码和城乡划分代码并写入数据库

    背景:业务需要全国省市区的划分以及3级级联,正好想起2018年曾经抓取过国家统计局网站的去全国统计用区划代码和城乡划分代码,原资源的地址:2018年全国统计用区划代码和城乡划分代码.sql-MySQL ...

最新文章

  1. 2020-11-11(C语言下JNI开发hello过程)
  2. 启明云端分享| 乐鑫刚发布的 ESP32-C2与今年五月份量产的ESP32-C3有哪些不同呢?作为两颗升级替代ESP8286的芯片,我们在应用时怎么去选择呢
  3. 大数据学习笔记12:搭建伪分布式Spark
  4. 限制进程使用的内存大小和CPU时间
  5. Flink Weekly | 每周社区动态更新 - 20200107
  6. Win2012 R2 IIS8.5+PHP(FastCGI)+MySQL运行环境搭建教程
  7. php电子备课系统,电子备课-华思信息-智慧校园-智慧班牌-智慧课堂-智慧教育整体解决方案...
  8. 快速入手光学字符识别控件Aspose.OCR!学会使用C#以编程方式对图像执行OCR
  9. 【推荐】微信运营书一箩筐,微信运营手册、微信力量
  10. windows 下MinGW的选择和安装笔记
  11. 【图片】图片处理,图片压缩相关知识分享
  12. mysql没开启binlog恢复数据_MySQL:binlog恢复数据
  13. android手机传感器总结
  14. ARM最强CPU/GPU来了!A75、G72首发:性能爆炸
  15. 儿童编程Scratch入门课程都学习什么内容?
  16. Windows微信文本压缩算法分析
  17. Java图片处理 - 复制
  18. Simulink仿真入门到精通(五) Simulink模型的仿真
  19. 第一讲 VMware 软件安装和虚拟机创建
  20. python按键按下改变数值_【发那科】发那科机器人TP 示教器按键使用简介

热门文章

  1. php获取客户端和服务器ip,PHP获取客户端和服务器IP地址
  2. 关于PLC的输入输出点,源型漏型的判断
  3. 单龙芯3A3000-7A1000PMON研究学习-(10)撸起袖子干-pmoncfg Bonito 干了什么?(这是make cfg的部分)
  4. loongson PMON使用
  5. cpuv(cpuv2和v3有什么区别)
  6. 简约商业计划书PPT模板
  7. vbs整人代码,表白+提醒 两段代码就OK
  8. 最强战队 | 三维视觉、SLAM方向全球顶尖实验室汇总
  9. html内编写vbs,HTML_VBS编程教程 (第2篇),第二篇: 我真没想到, - phpStudy
  10. 通过cid获取京东商品分类ID,京东商品分类API接口,京东商品分类详情接口,分类详情API接口,接口接入方案