文章内容
高德地图行政区域查询文档:https://lbs.amap.com/api/webservice/guide/api/district/
1、City表创建SQL
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 | CREATE TABLE `uac_city` ( `id` BIGINT (20) NOT NULL AUTO_INCREMENT, ` level ` INT (4) NOT NULL DEFAULT 0 COMMENT '城市级别' , `parent_id` VARCHAR (20) NOT NULL DEFAULT 0 COMMENT '父级ID' , ` name ` VARCHAR (20) NOT NULL DEFAULT '' COMMENT '城市名称' , `city_code` VARCHAR (4) NOT NULL DEFAULT '' COMMENT '城市编码' , `center_x` DECIMAL (20,7) NOT NULL DEFAULT '0.0000000' COMMENT '区域中心点经度' , `center_y` DECIMAL (20,7) NOT NULL DEFAULT '0.0000000' COMMENT '区域中心点纬度' , `adcode` VARCHAR (6) NOT NULL DEFAULT '' COMMENT '区域编码' , ` time ` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , PRIMARY KEY (`id`), INDEX `parent_id` (`parent_id` ASC ), INDEX `adcode` (`adcode` ASC ), INDEX `city_code` (`city_code` ASC ) ) AUTO_INCREMENT=1 COMMENT = '城市City表' ; |
2、SQL语句:
0001 0002 0003 0004 0005 0006 0007 0008 0009 0010 0011 0012 0013 0014 0015 0016 0017 0018 0019 0020 0021 0022 0023 0024 0025 0026 0027 0028 0029 0030 0031 0032 0033 0034 0035 0036 0037 0038 0039 0040 0041 0042 0043 0044 0045 0046 0047 0048 0049 0050 0051 0052 0053 0054 0055 0056 0057 0058 0059 0060 0061 0062 0063 0064 0065 0066 0067 0068 0069 0070 0071 0072 0073 0074 0075 0076 0077 0078 0079 0080 0081 0082 0083 0084 0085 0086 0087 0088 0089 0090 0091 0092 0093 0094 0095 0096 0097 0098 0099 0100 0101 0102 0103 0104 0105 0106 0107 0108 0109 0110 0111 0112 0113 0114 0115 0116 0117 0118 0119 0120 0121 0122 0123 0124 0125 0126 0127 0128 0129 0130 0131 0132 0133 0134 0135 0136 0137 0138 0139 0140 0141 0142 0143 0144 0145 0146 0147 0148 0149 0150 0151 0152 0153 0154 0155 0156 0157 0158 0159 0160 0161 0162 0163 0164 0165 0166 0167 0168 0169 0170 0171 0172 0173 0174 0175 0176 0177 0178 0179 0180 0181 0182 0183 0184 0185 0186 0187 0188 0189 0190 0191 0192 0193 0194 0195 0196 0197 0198 0199 0200 0201 0202 0203 0204 0205 0206 0207 0208 0209 0210 0211 0212 0213 0214 0215 0216 0217 0218 0219 0220 0221 0222 0223 0224 0225 0226 0227 0228 0229 0230 0231 0232 0233 0234 0235 0236 0237 0238 0239 0240 0241 0242 0243 0244 0245 0246 0247 0248 0249 0250 0251 0252 0253 0254 0255 0256 0257 0258 0259 0260 0261 0262 0263 0264 0265 0266 0267 0268 0269 0270 0271 0272 0273 0274 0275 0276 0277 0278 0279 0280 0281 0282 0283 0284 0285 0286 0287 0288 0289 0290 0291 0292 0293 0294 0295 0296 0297 0298 0299 0300 0301 0302 0303 0304 0305 0306 0307 0308 0309 0310 0311 0312 0313 0314 0315 0316 0317 0318 0319 0320 0321 0322 0323 0324 0325 0326 0327 0328 0329 0330 0331 0332 0333 0334 0335 0336 0337 0338 0339 0340 0341 0342 0343 0344 0345 0346 0347 0348 0349 0350 0351 0352 0353 0354 0355 0356 0357 0358 0359 0360 0361 0362 0363 0364 0365 0366 0367 0368 0369 0370 0371 0372 0373 0374 0375 0376 0377 0378 0379 0380 0381 0382 0383 0384 0385 0386 0387 0388 0389 0390 0391 0392 0393 0394 0395 0396 0397 0398 0399 0400 0401 0402 0403 0404 0405 0406 0407 0408 0409 0410 0411 0412 0413 0414 0415 0416 0417 0418 0419 0420 0421 0422 0423 0424 0425 0426 0427 0428 0429 0430 0431 0432 0433 0434 0435 0436 0437 0438 0439 0440 0441 0442 0443 0444 0445 0446 0447 0448 0449 0450 0451 0452 0453 0454 0455 0456 0457 0458 0459 0460 0461 0462 0463 0464 0465 0466 0467 0468 0469 0470 0471 0472 0473 0474 0475 0476 0477 0478 0479 0480 0481 0482 0483 0484 0485 0486 0487 0488 0489 0490 0491 0492 0493 0494 0495 0496 0497 0498 0499 0500 0501 0502 0503 0504 0505 0506 0507 0508 0509 0510 0511 0512 0513 0514 0515 0516 0517 0518 0519 0520 0521 0522 0523 0524 0525 0526 0527 0528 0529 0530 0531 0532 0533 0534 0535 0536 0537 0538 0539 0540 0541 0542 0543 0544 0545 0546 0547 0548 0549 0550 0551 0552 0553 0554 0555 0556 0557 0558 0559 0560 0561 0562 0563 0564 0565 0566 0567 0568 0569 0570 0571 0572 0573 0574 0575 0576 0577 0578 0579 0580 0581 0582 0583 0584 0585 0586 0587 0588 0589 0590 0591 0592 0593 0594 0595 0596 0597 0598 0599 0600 0601 0602 0603 0604 0605 0606 0607 0608 0609 0610 0611 0612 0613 0614 0615 0616 0617 0618 0619 0620 0621 0622 0623 0624 0625 0626 0627 0628 0629 0630 0631 0632 0633 0634 0635 0636 0637 0638 0639 0640 0641 0642 0643 0644 0645 0646 0647 0648 0649 0650 0651 0652 0653 0654 0655 0656 0657 0658 0659 0660 0661 0662 0663 0664 0665 0666 0667 0668 0669 0670 0671 0672 0673 0674 0675 0676 0677 0678 0679 0680 0681 0682 0683 0684 0685 0686 0687 0688 0689 0690 0691 0692 0693 0694 0695 0696 0697 0698 0699 0700 0701 0702 0703 0704 0705 0706 0707 0708 0709 0710 0711 0712 0713 0714 0715 0716 0717 0718 0719 0720 0721 0722 0723 0724 0725 0726 0727 0728 0729 0730 0731 0732 0733 0734 0735 0736 0737 0738 0739 0740 0741 0742 0743 0744 0745 0746 0747 0748 0749 0750 0751 0752 0753 0754 0755 0756 0757 0758 0759 0760 0761 0762 0763 0764 0765 0766 0767 0768 0769 0770 0771 0772 0773 0774 0775 0776 0777 0778 0779 0780 0781 0782 0783 0784 0785 0786 0787 0788 0789 0790 0791 0792 0793 0794 0795 0796 0797 0798 0799 0800 0801 0802 0803 0804 0805 0806 0807 0808 0809 0810 0811 0812 0813 0814 0815 0816 0817 0818 0819 0820 0821 0822 0823 0824 0825 0826 0827 0828 0829 0830 0831 0832 0833 0834 0835 0836 0837 0838 0839 0840 0841 0842 0843 0844 0845 0846 0847 0848 0849 0850 0851 0852 0853 0854 0855 0856 0857 0858 0859 0860 0861 0862 0863 0864 0865 0866 0867 0868 0869 0870 0871 0872 0873 0874 0875 0876 0877 0878 0879 0880 0881 0882 0883 0884 0885 0886 0887 0888 0889 0890 0891 0892 0893 0894 0895 0896 0897 0898 0899 0900 0901 0902 0903 0904 0905 0906 0907 0908 0909 0910 0911 0912 0913 0914 0915 0916 0917 0918 0919 0920 0921 0922 0923 0924 0925 0926 0927 0928 0929 0930 0931 0932 0933 0934 0935 0936 0937 0938 0939 0940 0941 0942 0943 0944 0945 0946 0947 0948 0949 0950 0951 0952 0953 0954 0955 0956 0957 0958 0959 0960 0961 0962 0963 0964 0965 0966 0967 0968 0969 0970 0971 0972 0973 0974 0975 0976 0977 0978 0979 0980 0981 0982 0983 0984 0985 0986 0987 0988 0989 0990 0991 0992 0993 0994 0995 0996 0997 0998 0999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 | INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '广东省' , '' , '113.280637' , '23.125178' , '440000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '汕头市' , '0754' , '116.708463' , '23.37102' , '440500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '潮阳区' , '0754' , '116.602602' , '23.262336' , '440513' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '澄海区' , '0754' , '116.76336' , '23.46844' , '440515' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '南澳县' , '0754' , '117.027105' , '23.419562' , '440523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '潮南区' , '0754' , '116.423607' , '23.249798' , '440514' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '濠江区' , '0754' , '116.729528' , '23.279345' , '440512' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '金平区' , '0754' , '116.703583' , '23.367071' , '440511' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440500' ORDER BY id ASC LIMIT 1) m), '龙湖区' , '0754' , '116.732015' , '23.373754' , '440507' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '佛山市' , '0757' , '113.122717' , '23.028762' , '440600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440600' ORDER BY id ASC LIMIT 1) m), '三水区' , '0757' , '112.899414' , '23.16504' , '440607' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440600' ORDER BY id ASC LIMIT 1) m), '高明区' , '0757' , '112.882123' , '22.893855' , '440608' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440600' ORDER BY id ASC LIMIT 1) m), '顺德区' , '0757' , '113.281826' , '22.75851' , '440606' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440600' ORDER BY id ASC LIMIT 1) m), '禅城区' , '0757' , '113.112414' , '23.019643' , '440604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440600' ORDER BY id ASC LIMIT 1) m), '南海区' , '0757' , '113.145577' , '23.031562' , '440605' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '肇庆市' , '0758' , '112.472529' , '23.051546' , '441200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '封开县' , '0758' , '111.502973' , '23.434731' , '441225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '怀集县' , '0758' , '112.182466' , '23.913072' , '441224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '广宁县' , '0758' , '112.440419' , '23.631486' , '441223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '德庆县' , '0758' , '111.78156' , '23.141711' , '441226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '四会市' , '0758' , '112.695028' , '23.340324' , '441284' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '鼎湖区' , '0758' , '112.565249' , '23.155822' , '441203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '端州区' , '0758' , '112.472329' , '23.052662' , '441202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441200' ORDER BY id ASC LIMIT 1) m), '高要区' , '0758' , '112.460846' , '23.027694' , '441204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '惠州市' , '0752' , '114.412599' , '23.079404' , '441300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441300' ORDER BY id ASC LIMIT 1) m), '龙门县' , '0752' , '114.259986' , '23.723894' , '441324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441300' ORDER BY id ASC LIMIT 1) m), '博罗县' , '0752' , '114.284254' , '23.167575' , '441322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441300' ORDER BY id ASC LIMIT 1) m), '惠东县' , '0752' , '114.723092' , '22.983036' , '441323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441300' ORDER BY id ASC LIMIT 1) m), '惠阳区' , '0752' , '114.469444' , '22.78851' , '441303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441300' ORDER BY id ASC LIMIT 1) m), '惠城区' , '0752' , '114.413978' , '23.079883' , '441302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '深圳市' , '0755' , '114.085947' , '22.547' , '440300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '宝安区' , '0755' , '113.828671' , '22.754741' , '440306' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '南山区' , '0755' , '113.92943' , '22.531221' , '440305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '福田区' , '0755' , '114.05096' , '22.541009' , '440304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '罗湖区' , '0755' , '114.123885' , '22.555341' , '440303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '龙岗区' , '0755' , '114.251372' , '22.721511' , '440307' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '光明区' , '0755' , '113.935895' , '22.748816' , '440311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '龙华区' , '0755' , '114.044346' , '22.691963' , '440309' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '坪山区' , '0755' , '114.338441' , '22.69423' , '440310' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440300' ORDER BY id ASC LIMIT 1) m), '盐田区' , '0755' , '114.235366' , '22.555069' , '440308' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '珠海市' , '0756' , '113.553986' , '22.224979' , '440400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440400' ORDER BY id ASC LIMIT 1) m), '金湾区' , '0756' , '113.345071' , '22.139122' , '440404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440400' ORDER BY id ASC LIMIT 1) m), '斗门区' , '0756' , '113.297739' , '22.209117' , '440403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440400' ORDER BY id ASC LIMIT 1) m), '香洲区' , '0756' , '113.55027' , '22.271249' , '440402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '茂名市' , '0668' , '110.919229' , '21.659751' , '440900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440900' ORDER BY id ASC LIMIT 1) m), '化州市' , '0668' , '110.63839' , '21.654953' , '440982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440900' ORDER BY id ASC LIMIT 1) m), '电白区' , '0668' , '111.007264' , '21.507219' , '440904' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440900' ORDER BY id ASC LIMIT 1) m), '茂南区' , '0668' , '110.920542' , '21.660425' , '440902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440900' ORDER BY id ASC LIMIT 1) m), '高州市' , '0668' , '110.853251' , '21.915153' , '440981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440900' ORDER BY id ASC LIMIT 1) m), '信宜市' , '0668' , '110.941656' , '22.352681' , '440983' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '云浮市' , '0766' , '112.044439' , '22.929801' , '445300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445300' ORDER BY id ASC LIMIT 1) m), '郁南县' , '0766' , '111.535921' , '23.237709' , '445322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445300' ORDER BY id ASC LIMIT 1) m), '罗定市' , '0766' , '111.578201' , '22.765415' , '445381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445300' ORDER BY id ASC LIMIT 1) m), '新兴县' , '0766' , '112.23083' , '22.703204' , '445321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445300' ORDER BY id ASC LIMIT 1) m), '云安区' , '0766' , '112.005609' , '23.073152' , '445303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445300' ORDER BY id ASC LIMIT 1) m), '云城区' , '0766' , '112.04471' , '22.930827' , '445302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '梅州市' , '0753' , '116.117582' , '24.299112' , '441400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '平远县' , '0753' , '115.891729' , '24.569651' , '441426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '蕉岭县' , '0753' , '116.170531' , '24.653313' , '441427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '兴宁市' , '0753' , '115.731648' , '24.138077' , '441481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '五华县' , '0753' , '115.775004' , '23.925424' , '441424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '丰顺县' , '0753' , '116.184419' , '23.752771' , '441423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '梅县区' , '0753' , '116.083482' , '24.267825' , '441403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '大埔县' , '0753' , '116.69552' , '24.351587' , '441422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441400' ORDER BY id ASC LIMIT 1) m), '梅江区' , '0753' , '116.12116' , '24.302593' , '441402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '阳江市' , '0662' , '111.975107' , '21.859222' , '441700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441700' ORDER BY id ASC LIMIT 1) m), '阳春市' , '0662' , '111.7905' , '22.169598' , '441781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441700' ORDER BY id ASC LIMIT 1) m), '江城区' , '0662' , '111.968909' , '21.859182' , '441702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441700' ORDER BY id ASC LIMIT 1) m), '阳西县' , '0662' , '111.617556' , '21.75367' , '441721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441700' ORDER BY id ASC LIMIT 1) m), '阳东区' , '0662' , '112.011267' , '21.864728' , '441704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '河源市' , '0762' , '114.697802' , '23.746266' , '441600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '连平县' , '0762' , '114.495952' , '24.364227' , '441623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '和平县' , '0762' , '114.941473' , '24.44318' , '441624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '龙川县' , '0762' , '115.256415' , '24.101174' , '441622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '源城区' , '0762' , '114.696828' , '23.746255' , '441602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '东源县' , '0762' , '114.742711' , '23.789093' , '441625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441600' ORDER BY id ASC LIMIT 1) m), '紫金县' , '0762' , '115.184383' , '23.633744' , '441621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '潮州市' , '0768' , '116.632301' , '23.661701' , '445100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445100' ORDER BY id ASC LIMIT 1) m), '饶平县' , '0768' , '117.00205' , '23.668171' , '445122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445100' ORDER BY id ASC LIMIT 1) m), '湘桥区' , '0768' , '116.63365' , '23.664675' , '445102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445100' ORDER BY id ASC LIMIT 1) m), '潮安区' , '0768' , '116.67931' , '23.461012' , '445103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '江门市' , '0750' , '113.094942' , '22.590431' , '440700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '鹤山市' , '0750' , '112.961795' , '22.768104' , '440784' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '江海区' , '0750' , '113.120601' , '22.572211' , '440704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '开平市' , '0750' , '112.692262' , '22.366286' , '440783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '台山市' , '0750' , '112.793414' , '22.250713' , '440781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '恩平市' , '0750' , '112.314051' , '22.182956' , '440785' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '蓬江区' , '0750' , '113.07859' , '22.59677' , '440703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440700' ORDER BY id ASC LIMIT 1) m), '新会区' , '0750' , '113.038584' , '22.520247' , '440705' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '湛江市' , '0759' , '110.364977' , '21.274898' , '440800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '廉江市' , '0759' , '110.284961' , '21.611281' , '440881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '吴川市' , '0759' , '110.780508' , '21.428453' , '440883' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '麻章区' , '0759' , '110.329167' , '21.265997' , '440811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '雷州市' , '0759' , '110.088275' , '20.908523' , '440882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '徐闻县' , '0759' , '110.175718' , '20.326083' , '440825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '霞山区' , '0759' , '110.406382' , '21.194229' , '440803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '坡头区' , '0759' , '110.455632' , '21.24441' , '440804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '遂溪县' , '0759' , '110.255321' , '21.376915' , '440823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440800' ORDER BY id ASC LIMIT 1) m), '赤坎区' , '0759' , '110.361634' , '21.273365' , '440802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '汕尾市' , '0660' , '115.364238' , '22.774485' , '441500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441500' ORDER BY id ASC LIMIT 1) m), '陆河县' , '0660' , '115.657565' , '23.302682' , '441523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441500' ORDER BY id ASC LIMIT 1) m), '海丰县' , '0660' , '115.337324' , '22.971042' , '441521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441500' ORDER BY id ASC LIMIT 1) m), '陆丰市' , '0660' , '115.644203' , '22.946104' , '441581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441500' ORDER BY id ASC LIMIT 1) m), '城区' , '0660' , '115.363667' , '22.776227' , '441502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '揭阳市' , '0663' , '116.355733' , '23.543778' , '445200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445200' ORDER BY id ASC LIMIT 1) m), '揭西县' , '0663' , '115.838708' , '23.4273' , '445222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445200' ORDER BY id ASC LIMIT 1) m), '普宁市' , '0663' , '116.165082' , '23.29788' , '445281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445200' ORDER BY id ASC LIMIT 1) m), '惠来县' , '0663' , '116.295832' , '23.029834' , '445224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445200' ORDER BY id ASC LIMIT 1) m), '揭东区' , '0663' , '116.412947' , '23.569887' , '445203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '445200' ORDER BY id ASC LIMIT 1) m), '榕城区' , '0663' , '116.357045' , '23.535524' , '445202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '韶关市' , '0751' , '113.591544' , '24.801322' , '440200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '浈江区' , '0751' , '113.599224' , '24.803977' , '440204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '乳源瑶族自治县' , '0751' , '113.278417' , '24.776109' , '440232' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '始兴县' , '0751' , '114.067205' , '24.948364' , '440222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '仁化县' , '0751' , '113.748627' , '25.088226' , '440224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '南雄市' , '0751' , '114.311231' , '25.115328' , '440282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '翁源县' , '0751' , '114.131289' , '24.353887' , '440229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '曲江区' , '0751' , '113.605582' , '24.680195' , '440205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '武江区' , '0751' , '113.588289' , '24.80016' , '440203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '新丰县' , '0751' , '114.207034' , '24.055412' , '440233' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440200' ORDER BY id ASC LIMIT 1) m), '乐昌市' , '0751' , '113.352413' , '25.128445' , '440281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '清远市' , '0763' , '113.051227' , '23.685022' , '441800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '连州市' , '0763' , '112.379271' , '24.783966' , '441882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '连南瑶族自治县' , '0763' , '112.290808' , '24.719097' , '441826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '连山壮族瑶族自治县' , '0763' , '112.086555' , '24.567271' , '441825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '英德市' , '0763' , '113.405404' , '24.18612' , '441881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '佛冈县' , '0763' , '113.534094' , '23.866739' , '441821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '阳山县' , '0763' , '112.634019' , '24.470286' , '441823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '清城区' , '0763' , '113.048698' , '23.688976' , '441802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441800' ORDER BY id ASC LIMIT 1) m), '清新区' , '0763' , '113.015203' , '23.736949' , '441803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '中山市' , '0760' , '113.382391' , '22.521113' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '三角镇' , '0760' , '113.416' , '22.7079' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '横栏镇' , '0760' , '113.224' , '22.6048' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '五桂山街道' , '0760' , '113.399' , '22.4847' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '东升镇' , '0760' , '113.321' , '22.5607' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '神湾镇' , '0760' , '113.376' , '22.2768' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '火炬开发区街道' , '0760' , '113.42' , '22.5577' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '小榄镇' , '0760' , '113.23' , '22.7026' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '南朗镇' , '0760' , '113.482' , '22.519' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '古镇镇' , '0760' , '113.167' , '22.6751' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '民众镇' , '0760' , '113.499' , '22.6855' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '港口镇' , '0760' , '113.354' , '22.6027' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '三乡镇' , '0760' , '113.432' , '22.3879' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '石岐区街道' , '0760' , '113.405' , '22.5247' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '大涌镇' , '0760' , '113.297' , '22.4834' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '南头镇' , '0760' , '113.328' , '22.6882' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '黄圃镇' , '0760' , '113.329' , '22.7457' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '东区街道' , '0760' , '113.4' , '22.5274' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '阜沙镇' , '0760' , '113.34' , '22.6406' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '坦洲镇' , '0760' , '113.38' , '22.2868' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '西区街道' , '0760' , '113.314' , '22.5649' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '板芙镇' , '0760' , '113.358' , '22.4068' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '沙溪镇' , '0760' , '113.344' , '22.5248' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '南区街道' , '0760' , '113.367' , '22.4892' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '442000' ORDER BY id ASC LIMIT 1) m), '东凤镇' , '0760' , '113.308' , '22.6803' , '442000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '东莞市' , '0769' , '113.746262' , '23.046237' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '莞城街道' , '0769' , '113.743' , '23.0225' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '常平镇' , '0769' , '114.036' , '23.0074' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '望牛墩镇' , '0769' , '113.676' , '23.0683' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '大朗镇' , '0769' , '113.939' , '22.8654' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '麻涌镇' , '0769' , '113.562' , '22.9718' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '桥头镇' , '0769' , '114.065' , '23.0315' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '东莞生态园' , '0769' , '113.917' , '23.0806' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '凤岗镇' , '0769' , '114.105' , '22.7308' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '松山湖管委会' , '0769' , '113.875' , '22.869' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '樟木头镇' , '0769' , '114.018' , '22.8704' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '石龙镇' , '0769' , '113.833' , '23.1123' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '塘厦镇' , '0769' , '114.05' , '22.7713' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '寮步镇' , '0769' , '113.888' , '22.9529' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '高埗镇' , '0769' , '113.773' , '23.112' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '谢岗镇' , '0769' , '114.128' , '22.9901' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '厚街镇' , '0769' , '113.776' , '22.9097' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '虎门镇' , '0769' , '113.797' , '22.8587' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '虎门港管委会' , '0769' , '113.562' , '22.9718' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '南城街道' , '0769' , '113.737' , '23.0249' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '横沥镇' , '0769' , '114.006' , '23.0504' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '企石镇' , '0769' , '113.99' , '23.0541' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '东坑镇' , '0769' , '113.918' , '22.995' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '东城街道' , '0769' , '113.757' , '23.0485' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '石排镇' , '0769' , '113.988' , '23.068' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '沙田镇' , '0769' , '113.582' , '22.9426' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '洪梅镇' , '0769' , '113.607' , '23.0155' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '道滘镇' , '0769' , '113.692' , '23.004' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '大岭山镇' , '0769' , '113.843' , '22.9534' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '茶山镇' , '0769' , '113.839' , '23.0813' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '清溪镇' , '0769' , '114.11' , '22.862' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '万江街道' , '0769' , '113.709' , '23.0014' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '中堂镇' , '0769' , '113.734' , '23.1164' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '石碣镇' , '0769' , '113.846' , '23.1024' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '黄江镇' , '0769' , '113.977' , '22.8091' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '441900' ORDER BY id ASC LIMIT 1) m), '长安镇' , '0769' , '113.714' , '22.7863' , '441900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440000' ORDER BY id ASC LIMIT 1) m), '广州市' , '020' , '113.280637' , '23.125178' , '440100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '从化区' , '020' , '113.587386' , '23.545283' , '440117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '花都区' , '020' , '113.211184' , '23.39205' , '440114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '南沙区' , '020' , '113.53738' , '22.794531' , '440115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '海珠区' , '020' , '113.262008' , '23.103131' , '440105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '番禺区' , '020' , '113.364619' , '22.938582' , '440113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '荔湾区' , '020' , '113.243038' , '23.124943' , '440103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '增城区' , '020' , '113.829579' , '23.290497' , '440118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '黄埔区' , '020' , '113.450761' , '23.103239' , '440112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '天河区' , '020' , '113.335367' , '23.13559' , '440106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '越秀区' , '020' , '113.280714' , '23.125624' , '440104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '440100' ORDER BY id ASC LIMIT 1) m), '白云区' , '020' , '113.262831' , '23.162281' , '440111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '辽宁省' , '' , '123.429096' , '41.796767' , '210000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '葫芦岛市' , '0429' , '120.856394' , '40.755572' , '211400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '建昌县' , '0429' , '119.807776' , '40.812871' , '211422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '兴城市' , '0429' , '120.729365' , '40.619413' , '211481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '龙港区' , '0429' , '120.838569' , '40.709991' , '211403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '绥中县' , '0429' , '120.342112' , '40.328407' , '211421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '南票区' , '0429' , '120.752314' , '41.098813' , '211404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211400' ORDER BY id ASC LIMIT 1) m), '连山区' , '0429' , '120.85937' , '40.755143' , '211402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '大连市' , '0411' , '121.618622' , '38.91459' , '210200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '瓦房店市' , '0411' , '122.002656' , '39.63065' , '210281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '庄河市' , '0411' , '122.970612' , '39.69829' , '210283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '普兰店区' , '0411' , '121.9705' , '39.401555' , '210214' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '金州区' , '0411' , '121.789413' , '39.052745' , '210213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '长海县' , '0411' , '122.587824' , '39.272399' , '210224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '甘井子区' , '0411' , '121.582614' , '38.975148' , '210211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '中山区' , '0411' , '121.64376' , '38.921553' , '210202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '旅顺口区' , '0411' , '121.26713' , '38.812043' , '210212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '西岗区' , '0411' , '121.616112' , '38.914266' , '210203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210200' ORDER BY id ASC LIMIT 1) m), '沙河口区' , '0411' , '121.593702' , '38.912859' , '210204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '锦州市' , '0416' , '121.135742' , '41.119269' , '210700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '义县' , '0416' , '121.242831' , '41.537224' , '210727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '黑山县' , '0416' , '122.117915' , '41.691804' , '210726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '太和区' , '0416' , '121.107297' , '41.105378' , '210711' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '凌海市' , '0416' , '121.364236' , '41.171738' , '210781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '北镇市' , '0416' , '121.795962' , '41.598764' , '210782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '古塔区' , '0416' , '121.130085' , '41.115719' , '210702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210700' ORDER BY id ASC LIMIT 1) m), '凌河区' , '0416' , '121.151304' , '41.114662' , '210703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '丹东市' , '0415' , '124.383044' , '40.124296' , '210600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '凤城市' , '0415' , '124.071067' , '40.457567' , '210682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '振安区' , '0415' , '124.427709' , '40.158557' , '210604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '东港市' , '0415' , '124.149437' , '39.883467' , '210681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '振兴区' , '0415' , '124.361153' , '40.102801' , '210603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '宽甸满族自治县' , '0415' , '124.784867' , '40.730412' , '210624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210600' ORDER BY id ASC LIMIT 1) m), '元宝区' , '0415' , '124.397814' , '40.136483' , '210602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '抚顺市' , '0413' , '123.921109' , '41.875956' , '210400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '新宾满族自治县' , '0413' , '125.037547' , '41.732456' , '210422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '清原满族自治县' , '0413' , '124.927192' , '42.10135' , '210423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '东洲区' , '0413' , '124.047219' , '41.866829' , '210403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '抚顺县' , '0413' , '124.097979' , '41.922644' , '210421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '新抚区' , '0413' , '123.902858' , '41.86082' , '210402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '顺城区' , '0413' , '123.917165' , '41.881132' , '210411' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210400' ORDER BY id ASC LIMIT 1) m), '望花区' , '0413' , '123.801509' , '41.851803' , '210404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '盘锦市' , '0427' , '122.06957' , '41.124484' , '211100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211100' ORDER BY id ASC LIMIT 1) m), '兴隆台区' , '0427' , '122.071624' , '41.122423' , '211103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211100' ORDER BY id ASC LIMIT 1) m), '盘山县' , '0427' , '121.98528' , '41.240701' , '211122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211100' ORDER BY id ASC LIMIT 1) m), '大洼区' , '0427' , '122.071708' , '40.994428' , '211104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211100' ORDER BY id ASC LIMIT 1) m), '双台子区' , '0427' , '122.055733' , '41.190365' , '211102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '阜新市' , '0418' , '121.648962' , '42.011796' , '210900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '清河门区' , '0418' , '121.42018' , '41.780477' , '210905' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '太平区' , '0418' , '121.677575' , '42.011145' , '210904' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '阜新蒙古族自治县' , '0418' , '121.743125' , '42.058607' , '210921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '新邱区' , '0418' , '121.790541' , '42.086603' , '210903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '彰武县' , '0418' , '122.537444' , '42.384823' , '210922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '细河区' , '0418' , '121.654791' , '42.019218' , '210911' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210900' ORDER BY id ASC LIMIT 1) m), '海州区' , '0418' , '121.657639' , '42.011162' , '210902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '沈阳市' , '024' , '123.429096' , '41.796767' , '210100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '新民市' , '024' , '122.828868' , '41.996508' , '210181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '和平区' , '024' , '123.406664' , '41.788074' , '210102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '于洪区' , '024' , '123.310829' , '41.795833' , '210114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '皇姑区' , '024' , '123.405677' , '41.822336' , '210105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '苏家屯区' , '024' , '123.341604' , '41.665904' , '210111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '康平县' , '024' , '123.352703' , '42.741533' , '210123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '法库县' , '024' , '123.416722' , '42.507045' , '210124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '大东区' , '024' , '123.469956' , '41.808503' , '210104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '沈河区' , '024' , '123.445696' , '41.795591' , '210103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '辽中区' , '024' , '122.731269' , '41.512725' , '210115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '铁西区' , '024' , '123.350664' , '41.787808' , '210106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '浑南区' , '024' , '123.458981' , '41.741946' , '210112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210100' ORDER BY id ASC LIMIT 1) m), '沈北新区' , '024' , '123.521471' , '42.052312' , '210113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '铁岭市' , '0410' , '123.844279' , '42.290585' , '211200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '清河区' , '0410' , '124.14896' , '42.542978' , '211204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '开原市' , '0410' , '124.045551' , '42.542141' , '211282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '调兵山市' , '0410' , '123.545366' , '42.450734' , '211281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '昌图县' , '0410' , '124.11017' , '42.784441' , '211224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '银州区' , '0410' , '123.844877' , '42.292278' , '211202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '西丰县' , '0410' , '124.72332' , '42.738091' , '211223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211200' ORDER BY id ASC LIMIT 1) m), '铁岭县' , '0410' , '123.725669' , '42.223316' , '211221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '营口市' , '0417' , '122.235151' , '40.667432' , '210800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '鲅鱼圈区' , '0417' , '122.127242' , '40.263646' , '210804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '西市区' , '0417' , '122.210067' , '40.663086' , '210803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '大石桥市' , '0417' , '122.505894' , '40.633973' , '210882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '盖州市' , '0417' , '122.355534' , '40.405234' , '210881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '老边区' , '0417' , '122.382584' , '40.682723' , '210811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210800' ORDER BY id ASC LIMIT 1) m), '站前区' , '0417' , '122.253235' , '40.669949' , '210802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '本溪市' , '0414' , '123.770519' , '41.297909' , '210500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '桓仁满族自治县' , '0414' , '125.359195' , '41.268997' , '210522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '溪湖区' , '0414' , '123.765226' , '41.330056' , '210503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '南芬区' , '0414' , '123.748381' , '41.104093' , '210505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '平山区' , '0414' , '123.761231' , '41.291581' , '210502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '本溪满族自治县' , '0414' , '124.126156' , '41.300344' , '210521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210500' ORDER BY id ASC LIMIT 1) m), '明山区' , '0414' , '123.763288' , '41.302429' , '210504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '辽阳市' , '0419' , '123.18152' , '41.269402' , '211000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '文圣区' , '0419' , '123.188227' , '41.266765' , '211003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '宏伟区' , '0419' , '123.200461' , '41.205747' , '211004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '太子河区' , '0419' , '123.185336' , '41.251682' , '211011' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '灯塔市' , '0419' , '123.325864' , '41.427836' , '211081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '弓长岭区' , '0419' , '123.431633' , '41.157831' , '211005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '白塔区' , '0419' , '123.172611' , '41.26745' , '211002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211000' ORDER BY id ASC LIMIT 1) m), '辽阳县' , '0419' , '123.079674' , '41.216479' , '211021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '鞍山市' , '0412' , '122.995632' , '41.110626' , '210300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '台安县' , '0412' , '122.429736' , '41.38686' , '210321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '岫岩满族自治县' , '0412' , '123.28833' , '40.281509' , '210323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '铁西区' , '0412' , '122.971834' , '41.11069' , '210303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '铁东区' , '0412' , '122.994475' , '41.110344' , '210302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '千山区' , '0412' , '122.949298' , '41.068909' , '210311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '立山区' , '0412' , '123.024806' , '41.150622' , '210304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210300' ORDER BY id ASC LIMIT 1) m), '海城市' , '0412' , '122.752199' , '40.852533' , '210381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '210000' ORDER BY id ASC LIMIT 1) m), '朝阳市' , '0421' , '120.451176' , '41.576758' , '211300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '北票市' , '0421' , '120.766951' , '41.803286' , '211381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '龙城区' , '0421' , '120.413376' , '41.576749' , '211303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '双塔区' , '0421' , '120.44877' , '41.579389' , '211302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '朝阳县' , '0421' , '120.404217' , '41.526342' , '211321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '喀喇沁左翼蒙古族自治县' , '0421' , '119.744883' , '41.125428' , '211324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '凌源市' , '0421' , '119.404789' , '41.243086' , '211382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '211300' ORDER BY id ASC LIMIT 1) m), '建平县' , '0421' , '119.642363' , '41.402576' , '211322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '新疆维吾尔自治区' , '' , '87.617733' , '43.792818' , '650000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '和田地区' , '0903' , '79.92533' , '37.110687' , '653200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '于田县' , '0903' , '81.667845' , '36.854628' , '653226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '民丰县' , '0903' , '82.692354' , '37.064909' , '653227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '和田市' , '0903' , '79.927542' , '37.108944' , '653201' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '墨玉县' , '0903' , '79.736629' , '37.271511' , '653222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '和田县' , '0903' , '79.81907' , '37.120031' , '653221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '皮山县' , '0903' , '78.282301' , '37.616332' , '653223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '策勒县' , '0903' , '80.803572' , '37.001672' , '653225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653200' ORDER BY id ASC LIMIT 1) m), '洛浦县' , '0903' , '80.184038' , '37.074377' , '653224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '博尔塔拉蒙古自治州' , '0909' , '82.074778' , '44.903258' , '652700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652700' ORDER BY id ASC LIMIT 1) m), '温泉县' , '0909' , '81.03099' , '44.973751' , '652723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652700' ORDER BY id ASC LIMIT 1) m), '阿拉山口市' , '0909' , '82.569389' , '45.16777' , '652702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652700' ORDER BY id ASC LIMIT 1) m), '博乐市' , '0909' , '82.072237' , '44.903087' , '652701' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652700' ORDER BY id ASC LIMIT 1) m), '精河县' , '0909' , '82.892938' , '44.605645' , '652722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '铁门关市' , '1996' , '85.501218' , '41.827251' , '659006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659006' ORDER BY id ASC LIMIT 1) m), '博古其镇' , '1996' , '85.5849' , '41.8825' , '659006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659006' ORDER BY id ASC LIMIT 1) m), '双丰镇' , '1996' , '85.5849' , '41.8825' , '659006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '可克达拉市' , '1999' , '80.63579' , '43.6832' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '长丰镇' , '1999' , '80.9903' , '43.8897' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '都拉塔口岸' , '1999' , '80.6882' , '43.7131' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '兵团六十六团' , '1999' , '81.086' , '43.9599' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '苇湖镇' , '1999' , '80.6749' , '44.0986' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '兵团六十七团' , '1999' , '80.6068' , '43.7652' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659008' ORDER BY id ASC LIMIT 1) m), '榆树庄镇' , '1999' , '80.4844' , '43.931' , '659008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '双河市' , '1909' , '82.353656' , '44.840524' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659007' ORDER BY id ASC LIMIT 1) m), '兵团八十九团' , '1909' , '82.2853' , '45.0582' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659007' ORDER BY id ASC LIMIT 1) m), '博河镇' , '1909' , '82.1787' , '44.8089' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659007' ORDER BY id ASC LIMIT 1) m), '石峪镇' , '1909' , '82.215' , '45.1246' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659007' ORDER BY id ASC LIMIT 1) m), '双乐镇' , '1909' , '82.6473' , '44.7651' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659007' ORDER BY id ASC LIMIT 1) m), '双桥镇' , '1909' , '82.4908' , '44.7469' , '659007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '北屯市' , '1906' , '87.824932' , '47.353177' , '659005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659005' ORDER BY id ASC LIMIT 1) m), '海川镇' , '1906' , '87.5186' , '47.4099' , '659005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659005' ORDER BY id ASC LIMIT 1) m), '北屯镇' , '1906' , '87.7224' , '47.4017' , '659005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659005' ORDER BY id ASC LIMIT 1) m), '丰庆镇' , '1906' , '87.761' , '47.1948' , '659005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659005' ORDER BY id ASC LIMIT 1) m), '双渠镇' , '1906' , '88.1187' , '47.1285' , '659005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '阿勒泰地区' , '0906' , '88.13963' , '47.848393' , '654300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '吉木乃县' , '0906' , '85.876064' , '47.434633' , '654326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '富蕴县' , '0906' , '89.524993' , '46.993106' , '654322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '布尔津县' , '0906' , '86.86186' , '47.70453' , '654321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '哈巴河县' , '0906' , '86.418964' , '48.059284' , '654324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '青河县' , '0906' , '90.381561' , '46.672446' , '654325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '阿勒泰市' , '0906' , '88.138743' , '47.848911' , '654301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654300' ORDER BY id ASC LIMIT 1) m), '福海县' , '0906' , '87.494569' , '47.113128' , '654323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '昆玉市' , '1903' , '79.287372' , '37.207994' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '喀拉喀什镇' , '1903' , '79.7678' , '37.2867' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '普恰克其乡' , '1903' , '79.783' , '37.5805' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '乌尔其乡' , '1903' , '79.5866' , '37.332' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '博斯坦乡' , '1903' , '81.3298' , '36.4124' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '兵团二二四团' , '1903' , '79.3401' , '37.416' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '阔依其乡' , '1903' , '79.6876' , '37.3691' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '昆牧镇' , '1903' , '81.0295' , '36.3152' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '老兵镇' , '1903' , '79.6039' , '37.3666' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '奴尔乡' , '1903' , '81.0072' , '36.2605' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '乌鲁克萨依乡' , '1903' , '80.8148' , '36.2925' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659009' ORDER BY id ASC LIMIT 1) m), '昆泉镇' , '1903' , '78.5171' , '37.563' , '659009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '塔城地区' , '0901' , '82.985732' , '46.746301' , '654200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '托里县' , '0901' , '83.60469' , '45.935863' , '654224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '裕民县' , '0901' , '82.982157' , '46.202781' , '654225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '塔城市' , '0901' , '82.983988' , '46.746281' , '654201' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '和布克赛尔蒙古自治县' , '0901' , '85.733551' , '46.793001' , '654226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '额敏县' , '0901' , '83.622118' , '46.522555' , '654221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '乌苏市' , '0901' , '84.677624' , '44.430115' , '654202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654200' ORDER BY id ASC LIMIT 1) m), '沙湾市' , '0901' , '85.622508' , '44.329544' , '654223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '石河子市' , '0993' , '86.041075' , '44.305886' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '兵团一五二团' , '0993' , '86.0704' , '44.2827' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '向阳街道' , '0993' , '86.0397' , '44.3429' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '红山街道' , '0993' , '86.048' , '44.2682' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '东城街道' , '0993' , '86.0687' , '44.2873' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '石河子镇' , '0993' , '86.1022' , '44.1352' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '老街街道' , '0993' , '85.9909' , '44.3496' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '新城街道' , '0993' , '85.9823' , '44.2893' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659001' ORDER BY id ASC LIMIT 1) m), '北泉镇' , '0993' , '86.0983' , '44.4346' , '659001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '昌吉回族自治州' , '0994' , '87.304012' , '44.014577' , '652300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '奇台县' , '0994' , '89.591437' , '44.021996' , '652325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '玛纳斯县' , '0994' , '86.217687' , '44.305625' , '652324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '呼图壁县' , '0994' , '86.888613' , '44.189342' , '652323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '阜康市' , '0994' , '87.98384' , '44.152153' , '652302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '木垒哈萨克自治县' , '0994' , '90.282833' , '43.832442' , '652328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '昌吉市' , '0994' , '87.304112' , '44.013183' , '652301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652300' ORDER BY id ASC LIMIT 1) m), '吉木萨尔县' , '0994' , '89.181288' , '43.997162' , '652327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '巴音郭楞蒙古自治州' , '0996' , '86.150969' , '41.768552' , '652800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '和静县' , '0996' , '86.391067' , '42.31716' , '652827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '和硕县' , '0996' , '86.864947' , '42.268863' , '652828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '焉耆回族自治县' , '0996' , '86.5698' , '42.064349' , '652826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '博湖县' , '0996' , '86.631576' , '41.980166' , '652829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '若羌县' , '0996' , '88.168807' , '39.023807' , '652824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '且末县' , '0996' , '85.532629' , '38.138562' , '652825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '库尔勒市' , '0996' , '86.145948' , '41.763122' , '652801' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '轮台县' , '0996' , '84.248542' , '41.781266' , '652822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652800' ORDER BY id ASC LIMIT 1) m), '尉犁县' , '0996' , '86.263412' , '41.337428' , '652823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '伊犁哈萨克自治州' , '0999' , '81.317946' , '43.92186' , '654000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '奎屯市' , '0999' , '84.901602' , '44.423445' , '654003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '伊宁县' , '0999' , '81.524671' , '43.977876' , '654021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '新源县' , '0999' , '83.258493' , '43.434249' , '654025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '昭苏县' , '0999' , '81.126029' , '43.157765' , '654026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '尼勒克县' , '0999' , '82.504119' , '43.789737' , '654028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '特克斯县' , '0999' , '81.840058' , '43.214861' , '654027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '巩留县' , '0999' , '82.227044' , '43.481618' , '654024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '察布查尔锡伯自治县' , '0999' , '81.150874' , '43.838883' , '654022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '霍城县' , '0999' , '80.872508' , '44.049912' , '654023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '霍尔果斯市' , '0999' , '80.420759' , '44.201669' , '654004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '654000' ORDER BY id ASC LIMIT 1) m), '伊宁市' , '0999' , '81.316343' , '43.922209' , '654002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '阿克苏地区' , '0997' , '80.265068' , '41.170712' , '652900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '拜城县' , '0997' , '81.869881' , '41.796101' , '652926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '库车市' , '0997' , '82.96304' , '41.717141' , '652902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '温宿县' , '0997' , '80.243273' , '41.272995' , '652922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '阿克苏市' , '0997' , '80.2629' , '41.171272' , '652901' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '新和县' , '0997' , '82.610828' , '41.551176' , '652925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '沙雅县' , '0997' , '82.78077' , '41.226268' , '652924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '阿瓦提县' , '0997' , '80.378426' , '40.638422' , '652928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '柯坪县' , '0997' , '79.04785' , '40.50624' , '652929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '652900' ORDER BY id ASC LIMIT 1) m), '乌什县' , '0997' , '79.230805' , '41.21587' , '652927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '五家渠市' , '1994' , '87.526884' , '44.167401' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '梧桐镇' , '1994' , '87.5925' , '44.2694' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '军垦路街道' , '1994' , '87.5084' , '44.1889' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '蔡家湖镇' , '1994' , '87.4075' , '44.5317' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '人民路街道' , '1994' , '87.5728' , '44.1822' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '兵团一零一团' , '1994' , '87.5562' , '44.1752' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659004' ORDER BY id ASC LIMIT 1) m), '青湖路街道' , '1994' , '87.5245' , '44.1764' , '659004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '乌鲁木齐市' , '0991' , '87.617733' , '43.792818' , '650100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '达坂城区' , '0991' , '88.30994' , '43.36181' , '650107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '天山区' , '0991' , '87.620116' , '43.796428' , '650102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '米东区' , '0991' , '87.691801' , '43.960982' , '650109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '水磨沟区' , '0991' , '87.613093' , '43.816747' , '650105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '乌鲁木齐县' , '0991' , '87.505603' , '43.982546' , '650121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '头屯河区' , '0991' , '87.425823' , '43.876053' , '650106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '新市区' , '0991' , '87.560653' , '43.870882' , '650104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650100' ORDER BY id ASC LIMIT 1) m), '沙依巴克区' , '0991' , '87.596639' , '43.788872' , '650103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '喀什地区' , '0998' , '75.989138' , '39.467664' , '653100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '麦盖提县' , '0998' , '77.651538' , '38.903384' , '653127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '伽师县' , '0998' , '76.741982' , '39.494325' , '653129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '疏勒县' , '0998' , '76.053653' , '39.399461' , '653122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '莎车县' , '0998' , '77.248884' , '38.414499' , '653125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '塔什库尔干塔吉克自治县' , '0998' , '75.228068' , '37.775437' , '653131' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '泽普县' , '0998' , '77.273593' , '38.191217' , '653124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '叶城县' , '0998' , '77.420353' , '37.884679' , '653126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '巴楚县' , '0998' , '78.55041' , '39.783479' , '653130' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '疏附县' , '0998' , '75.863075' , '39.378306' , '653121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '英吉沙县' , '0998' , '76.174292' , '38.929839' , '653123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '喀什市' , '0998' , '75.98838' , '39.467861' , '653101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653100' ORDER BY id ASC LIMIT 1) m), '岳普湖县' , '0998' , '76.7724' , '39.235248' , '653128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '阿拉尔市' , '1997' , '81.285884' , '40.541914' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '阿拉尔农场' , '1997' , '81.0627' , '40.5567' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '幸福路街道' , '1997' , '81.2681' , '40.577' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团第一师幸福农场' , '1997' , '80.9904' , '40.7025' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '工业园区' , '1997' , '81.2448' , '40.5461' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团七团' , '1997' , '80.6543' , '40.6569' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '花桥镇' , '1997' , '81.5619' , '40.6277' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '托喀依乡' , '1997' , '81.3541' , '40.5818' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '青松路街道' , '1997' , '81.2545' , '40.542' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团第一师水利水电工程处' , '1997' , '81.2858' , '40.5496' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团八团' , '1997' , '80.7996' , '40.5973' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '中心监狱' , '1997' , '81.2766' , '40.6692' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团第一师塔里木灌区水利管理处' , '1997' , '81.2876' , '40.5454' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '金杨镇' , '1997' , '81.8688' , '40.9423' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团十六团' , '1997' , '80.7871' , '40.4163' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '幸福镇' , '1997' , '81.4734' , '40.5742' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '南口街道' , '1997' , '81.2988' , '40.5154' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '金银川路街道' , '1997' , '81.2613' , '40.5355' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团十二团' , '1997' , '81.1109' , '40.4977' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659002' ORDER BY id ASC LIMIT 1) m), '兵团十团' , '1997' , '81.259' , '40.6387' , '659002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '图木舒克市' , '1998' , '79.077978' , '39.867316' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团图木舒克市永安坝' , '1998' , '79.0133' , '39.8385' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团四十九团' , '1998' , '78.756' , '39.8224' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团五十一团' , '1998' , '79.2902' , '39.9888' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '前海街道' , '1998' , '79.0778' , '39.855' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团图木舒克市喀拉拜勒镇' , '1998' , '79.0112' , '39.8526' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '永安坝街道' , '1998' , '79.0229' , '39.8507' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '齐干却勒街道' , '1998' , '79.0906' , '39.8753' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团五十三团' , '1998' , '79.3214' , '40.0318' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '夏河镇' , '1998' , '79.2315' , '39.9549' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659003' ORDER BY id ASC LIMIT 1) m), '兵团四十四团' , '1998' , '79.1926' , '39.9168' , '659003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '吐鲁番市' , '0995' , '89.184078' , '42.947613' , '650400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650400' ORDER BY id ASC LIMIT 1) m), '鄯善县' , '0995' , '90.212692' , '42.865503' , '650421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650400' ORDER BY id ASC LIMIT 1) m), '托克逊县' , '0995' , '88.655771' , '42.793536' , '650422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650400' ORDER BY id ASC LIMIT 1) m), '高昌区' , '0995' , '89.182324' , '42.947627' , '650402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '克孜勒苏柯尔克孜自治州' , '0908' , '76.172825' , '39.713431' , '653000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653000' ORDER BY id ASC LIMIT 1) m), '阿图什市' , '0908' , '76.173939' , '39.712898' , '653001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653000' ORDER BY id ASC LIMIT 1) m), '乌恰县' , '0908' , '75.25969' , '39.716633' , '653024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653000' ORDER BY id ASC LIMIT 1) m), '阿合奇县' , '0908' , '78.450164' , '40.937567' , '653023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '653000' ORDER BY id ASC LIMIT 1) m), '阿克陶县' , '0908' , '75.945159' , '39.147079' , '653022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '哈密市' , '0902' , '93.51316' , '42.833248' , '650500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650500' ORDER BY id ASC LIMIT 1) m), '巴里坤哈萨克自治县' , '0902' , '93.021795' , '43.599032' , '650521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650500' ORDER BY id ASC LIMIT 1) m), '伊吾县' , '0902' , '94.692773' , '43.252012' , '650522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650500' ORDER BY id ASC LIMIT 1) m), '伊州区' , '0902' , '93.509174' , '42.833888' , '650502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '克拉玛依市' , '0990' , '84.873946' , '45.595886' , '650200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650200' ORDER BY id ASC LIMIT 1) m), '乌尔禾区' , '0990' , '85.697767' , '46.08776' , '650205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650200' ORDER BY id ASC LIMIT 1) m), '独山子区' , '0990' , '84.882267' , '44.327207' , '650202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650200' ORDER BY id ASC LIMIT 1) m), '克拉玛依区' , '0990' , '84.868918' , '45.600477' , '650203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650200' ORDER BY id ASC LIMIT 1) m), '白碱滩区' , '0990' , '85.129882' , '45.689021' , '650204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '650000' ORDER BY id ASC LIMIT 1) m), '胡杨河市' , '0992' , '84.8275959' , '44.69288853' , '659010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659010' ORDER BY id ASC LIMIT 1) m), '兵团一三零团' , '0992' , '84.8765' , '44.6164' , '659010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659010' ORDER BY id ASC LIMIT 1) m), '五五新镇街道' , '0992' , '84.8012' , '44.865' , '659010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659010' ORDER BY id ASC LIMIT 1) m), '兵团一二八团' , '0992' , '84.5572' , '45.0861' , '659010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '659010' ORDER BY id ASC LIMIT 1) m), '兵团一二九团' , '0992' , '84.8046' , '44.8465' , '659010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '河南省' , '' , '113.665412' , '34.757975' , '410000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '洛阳市' , '0379' , '112.434468' , '34.663041' , '410300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '新安县' , '0379' , '112.141403' , '34.728679' , '410323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '栾川县' , '0379' , '111.618386' , '33.783195' , '410324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '洛宁县' , '0379' , '111.655399' , '34.387179' , '410328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '偃师区' , '0379' , '112.787739' , '34.723042' , '410381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '老城区' , '0379' , '112.477298' , '34.682945' , '410302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '瀍河回族区' , '0379' , '112.491625' , '34.684738' , '410304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '洛龙区' , '0379' , '112.456634' , '34.618557' , '410311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '宜阳县' , '0379' , '112.179989' , '34.516478' , '410327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '嵩县' , '0379' , '112.087765' , '34.131563' , '410325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '涧西区' , '0379' , '112.399243' , '34.654251' , '410305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '西工区' , '0379' , '112.443232' , '34.667847' , '410303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '伊川县' , '0379' , '112.429384' , '34.423416' , '410329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '汝阳县' , '0379' , '112.473789' , '34.15323' , '410326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410300' ORDER BY id ASC LIMIT 1) m), '孟津区' , '0379' , '112.443892' , '34.826485' , '410306' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '三门峡市' , '0398' , '111.194099' , '34.777338' , '411200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '湖滨区' , '0398' , '111.19487' , '34.77812' , '411202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '渑池县' , '0398' , '111.762992' , '34.763487' , '411221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '卢氏县' , '0398' , '111.052649' , '34.053995' , '411224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '义马市' , '0398' , '111.869417' , '34.746868' , '411281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '灵宝市' , '0398' , '110.88577' , '34.521264' , '411282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411200' ORDER BY id ASC LIMIT 1) m), '陕州区' , '0398' , '111.103851' , '34.720244' , '411203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '漯河市' , '0395' , '114.026405' , '33.575855' , '411100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411100' ORDER BY id ASC LIMIT 1) m), '临颍县' , '0395' , '113.938891' , '33.80609' , '411122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411100' ORDER BY id ASC LIMIT 1) m), '召陵区' , '0395' , '114.051686' , '33.567555' , '411104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411100' ORDER BY id ASC LIMIT 1) m), '源汇区' , '0395' , '114.017948' , '33.565441' , '411102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411100' ORDER BY id ASC LIMIT 1) m), '舞阳县' , '0395' , '113.610565' , '33.436278' , '411121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411100' ORDER BY id ASC LIMIT 1) m), '郾城区' , '0395' , '114.016813' , '33.588897' , '411103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '许昌市' , '0374' , '113.826063' , '34.022956' , '411000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '建安区' , '0374' , '113.842898' , '34.005018' , '411003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '魏都区' , '0374' , '113.828307' , '34.02711' , '411002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '鄢陵县' , '0374' , '114.188507' , '34.100502' , '411024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '襄城县' , '0374' , '113.493166' , '33.855943' , '411025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '长葛市' , '0374' , '113.768912' , '34.219257' , '411082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411000' ORDER BY id ASC LIMIT 1) m), '禹州市' , '0374' , '113.471316' , '34.154403' , '411081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '南阳市' , '0377' , '112.540918' , '32.999082' , '411300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '西峡县' , '0377' , '111.485772' , '33.302981' , '411323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '卧龙区' , '0377' , '112.528789' , '32.989877' , '411303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '南召县' , '0377' , '112.435583' , '33.488617' , '411321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '唐河县' , '0377' , '112.838492' , '32.687892' , '411328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '镇平县' , '0377' , '112.232722' , '33.036651' , '411324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '淅川县' , '0377' , '111.489026' , '33.136106' , '411326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '内乡县' , '0377' , '111.843801' , '33.046358' , '411325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '宛城区' , '0377' , '112.544591' , '32.994857' , '411302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '邓州市' , '0377' , '112.092716' , '32.681642' , '411381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '桐柏县' , '0377' , '113.406059' , '32.367153' , '411330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '新野县' , '0377' , '112.365624' , '32.524006' , '411329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '社旗县' , '0377' , '112.938279' , '33.056126' , '411327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411300' ORDER BY id ASC LIMIT 1) m), '方城县' , '0377' , '113.010933' , '33.255138' , '411322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '信阳市' , '0376' , '114.075031' , '32.123274' , '411500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '淮滨县' , '0376' , '115.415451' , '32.452639' , '411527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '罗山县' , '0376' , '114.533414' , '32.203206' , '411521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '浉河区' , '0376' , '114.075031' , '32.123274' , '411502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '固始县' , '0376' , '115.667328' , '32.183074' , '411525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '商城县' , '0376' , '115.406297' , '31.799982' , '411524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '平桥区' , '0376' , '114.126027' , '32.098395' , '411503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '潢川县' , '0376' , '115.050123' , '32.134024' , '411526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '新县' , '0376' , '114.87705' , '31.63515' , '411523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '光山县' , '0376' , '114.903577' , '32.010398' , '411522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411500' ORDER BY id ASC LIMIT 1) m), '息县' , '0376' , '114.740713' , '32.344744' , '411528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '济源市' , '1391' , '112.590047' , '35.090378' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市坡头镇' , '1391' , '112.538' , '34.9308' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市梨林镇' , '1391' , '112.753' , '35.0882' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市思礼镇' , '1391' , '112.388' , '35.2103' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市大峪镇' , '1391' , '112.338' , '34.9398' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市五龙口镇' , '1391' , '112.761' , '35.1956' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市王屋镇' , '1391' , '112.169' , '35.1244' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市玉泉街道' , '1391' , '112.624' , '35.1189' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市轵城镇' , '1391' , '112.622' , '35.0625' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市济水街道' , '1391' , '112.595' , '35.0944' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市沁园街道' , '1391' , '112.593' , '35.0822' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市下冶镇' , '1391' , '112.212' , '35.1131' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市克井镇' , '1391' , '112.635' , '35.255' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市天坛街道' , '1391' , '112.567' , '35.1229' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市邵原镇' , '1391' , '112.114' , '35.2705' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市北海街道' , '1391' , '112.569' , '35.1116' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '419001' ORDER BY id ASC LIMIT 1) m), '济源市承留镇' , '1391' , '112.509' , '35.0243' , '419001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '濮阳市' , '0393' , '115.041299' , '35.768234' , '410900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '台前县' , '0393' , '115.855681' , '35.996474' , '410927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '南乐县' , '0393' , '115.204336' , '36.075204' , '410923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '范县' , '0393' , '115.504212' , '35.851977' , '410926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '华龙区' , '0393' , '115.03184' , '35.760473' , '410902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '清丰县' , '0393' , '115.107287' , '35.902413' , '410922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410900' ORDER BY id ASC LIMIT 1) m), '濮阳县' , '0393' , '115.023844' , '35.710349' , '410928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '驻马店市' , '0396' , '114.024736' , '32.980169' , '411700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '新蔡县' , '0396' , '114.975246' , '32.749948' , '411729' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '上蔡县' , '0396' , '114.266892' , '33.264719' , '411722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '西平县' , '0396' , '114.026864' , '33.382315' , '411721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '泌阳县' , '0396' , '113.32605' , '32.725129' , '411726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '遂平县' , '0396' , '114.00371' , '33.14698' , '411728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '平舆县' , '0396' , '114.637105' , '32.955626' , '411723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '驿城区' , '0396' , '114.029149' , '32.977559' , '411702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '确山县' , '0396' , '114.026679' , '32.801538' , '411725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '汝南县' , '0396' , '114.359495' , '33.004535' , '411727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411700' ORDER BY id ASC LIMIT 1) m), '正阳县' , '0396' , '114.38948' , '32.601826' , '411724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '鹤壁市' , '0392' , '114.295444' , '35.748236' , '410600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410600' ORDER BY id ASC LIMIT 1) m), '浚县' , '0392' , '114.550162' , '35.671282' , '410621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410600' ORDER BY id ASC LIMIT 1) m), '淇县' , '0392' , '114.200379' , '35.609478' , '410622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410600' ORDER BY id ASC LIMIT 1) m), '鹤山区' , '0392' , '114.166551' , '35.936128' , '410602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410600' ORDER BY id ASC LIMIT 1) m), '山城区' , '0392' , '114.184202' , '35.896058' , '410603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410600' ORDER BY id ASC LIMIT 1) m), '淇滨区' , '0392' , '114.293917' , '35.748382' , '410611' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '焦作市' , '0391' , '113.238266' , '35.23904' , '410800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '沁阳市' , '0391' , '112.934538' , '35.08901' , '410882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '马村区' , '0391' , '113.321703' , '35.265453' , '410804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '孟州市' , '0391' , '112.78708' , '34.90963' , '410883' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '博爱县' , '0391' , '113.069313' , '35.170351' , '410822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '修武县' , '0391' , '113.447465' , '35.229923' , '410821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '中站区' , '0391' , '113.175485' , '35.236145' , '410803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '山阳区' , '0391' , '113.26766' , '35.21476' , '410811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '解放区' , '0391' , '113.226126' , '35.241353' , '410802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '温县' , '0391' , '113.079118' , '34.941233' , '410825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410800' ORDER BY id ASC LIMIT 1) m), '武陟县' , '0391' , '113.408334' , '35.09885' , '410823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '郑州市' , '0371' , '113.665412' , '34.757975' , '410100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '登封市' , '0371' , '113.037768' , '34.459939' , '410185' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '新密市' , '0371' , '113.380616' , '34.537846' , '410183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '新郑市' , '0371' , '113.73967' , '34.394219' , '410184' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '上街区' , '0371' , '113.298282' , '34.808689' , '410106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '中牟县' , '0371' , '114.022521' , '34.721976' , '410122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '管城回族区' , '0371' , '113.685313' , '34.746453' , '410104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '金水区' , '0371' , '113.686037' , '34.775838' , '410105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '巩义市' , '0371' , '112.98283' , '34.75218' , '410181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '惠济区' , '0371' , '113.61836' , '34.828591' , '410108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '荥阳市' , '0371' , '113.391523' , '34.789077' , '410182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '中原区' , '0371' , '113.611576' , '34.748286' , '410102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410100' ORDER BY id ASC LIMIT 1) m), '二七区' , '0371' , '113.645422' , '34.730936' , '410103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '平顶山市' , '0375' , '113.307718' , '33.735241' , '410400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '鲁山县' , '0375' , '112.906703' , '33.740325' , '410423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '卫东区' , '0375' , '113.310327' , '33.739285' , '410403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '湛河区' , '0375' , '113.320873' , '33.725681' , '410411' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '舞钢市' , '0375' , '113.52625' , '33.302082' , '410481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '叶县' , '0375' , '113.358298' , '33.621252' , '410422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '新华区' , '0375' , '113.299061' , '33.737579' , '410402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '石龙区' , '0375' , '112.889885' , '33.901538' , '410404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '宝丰县' , '0375' , '113.066812' , '33.866359' , '410421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '郏县' , '0375' , '113.220451' , '33.971993' , '410425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410400' ORDER BY id ASC LIMIT 1) m), '汝州市' , '0375' , '112.845336' , '34.167408' , '410482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '安阳市' , '0372' , '114.352482' , '36.103442' , '410500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '殷都区' , '0372' , '114.300098' , '36.108974' , '410505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '内黄县' , '0372' , '114.904582' , '35.953702' , '410527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '文峰区' , '0372' , '114.352562' , '36.098101' , '410502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '安阳县' , '0372' , '114.130207' , '36.130585' , '410522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '龙安区' , '0372' , '114.323522' , '36.095568' , '410506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '北关区' , '0372' , '114.352646' , '36.10978' , '410503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '汤阴县' , '0372' , '114.362357' , '35.922349' , '410523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '滑县' , '0372' , '114.524' , '35.574628' , '410526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410500' ORDER BY id ASC LIMIT 1) m), '林州市' , '0372' , '113.823767' , '36.063403' , '410581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '新乡市' , '0373' , '113.883991' , '35.302616' , '410700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '凤泉区' , '0373' , '113.906712' , '35.379855' , '410704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '长垣市' , '0373' , '114.673807' , '35.19615' , '410783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '牧野区' , '0373' , '113.89716' , '35.312974' , '410711' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '卫滨区' , '0373' , '113.866065' , '35.304905' , '410703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '获嘉县' , '0373' , '113.657249' , '35.261685' , '410724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '封丘县' , '0373' , '114.423405' , '35.04057' , '410727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '原阳县' , '0373' , '113.965966' , '35.054001' , '410725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '新乡县' , '0373' , '113.806186' , '35.190021' , '410721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '红旗区' , '0373' , '113.878158' , '35.302684' , '410702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '卫辉市' , '0373' , '114.065855' , '35.404295' , '410781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '辉县市' , '0373' , '113.802518' , '35.461318' , '410782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410700' ORDER BY id ASC LIMIT 1) m), '延津县' , '0373' , '114.200982' , '35.149515' , '410726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '开封市' , '0378' , '114.341447' , '34.797049' , '410200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '杞县' , '0378' , '114.770472' , '34.554585' , '410221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '尉氏县' , '0378' , '114.193927' , '34.412256' , '410223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '禹王台区' , '0378' , '114.350246' , '34.779727' , '410205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '祥符区' , '0378' , '114.437622' , '34.756476' , '410212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '通许县' , '0378' , '114.467734' , '34.477302' , '410222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '兰考县' , '0378' , '114.820572' , '34.829899' , '410225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '鼓楼区' , '0378' , '114.3485' , '34.792383' , '410204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '顺河回族区' , '0378' , '114.364875' , '34.800459' , '410203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410200' ORDER BY id ASC LIMIT 1) m), '龙亭区' , '0378' , '114.353348' , '34.799833' , '410202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '周口市' , '0394' , '114.649653' , '33.620357' , '411600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '项城市' , '0394' , '114.899521' , '33.443085' , '411681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '商水县' , '0394' , '114.60927' , '33.543845' , '411623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '川汇区' , '0394' , '114.652136' , '33.614836' , '411602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '郸城县' , '0394' , '115.189' , '33.643852' , '411625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '鹿邑县' , '0394' , '115.486386' , '33.861067' , '411628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '淮阳区' , '0394' , '114.870166' , '33.732547' , '411603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '西华县' , '0394' , '114.530067' , '33.784378' , '411622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '扶沟县' , '0394' , '114.392008' , '34.054061' , '411621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '沈丘县' , '0394' , '115.078375' , '33.395514' , '411624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411600' ORDER BY id ASC LIMIT 1) m), '太康县' , '0394' , '114.853834' , '34.065312' , '411627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '410000' ORDER BY id ASC LIMIT 1) m), '商丘市' , '0370' , '115.650497' , '34.437054' , '411400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '宁陵县' , '0370' , '115.320055' , '34.449299' , '411423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '永城市' , '0370' , '116.449672' , '33.931318' , '411481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '睢阳区' , '0370' , '115.653813' , '34.390536' , '411403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '睢县' , '0370' , '115.070109' , '34.428433' , '411422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '夏邑县' , '0370' , '116.13989' , '34.240894' , '411426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '民权县' , '0370' , '115.148146' , '34.648455' , '411421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '柘城县' , '0370' , '115.307433' , '34.075277' , '411424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '虞城县' , '0370' , '115.863811' , '34.399634' , '411425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '411400' ORDER BY id ASC LIMIT 1) m), '梁园区' , '0370' , '115.65459' , '34.436553' , '411402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '内蒙古自治区' , '' , '111.670801' , '40.818311' , '150000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '巴彦淖尔市' , '0478' , '107.416959' , '40.757402' , '150800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '乌拉特中旗' , '0478' , '108.515255' , '41.57254' , '150824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '临河区' , '0478' , '107.417018' , '40.757092' , '150802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '五原县' , '0478' , '108.270658' , '41.097639' , '150821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '磴口县' , '0478' , '107.006056' , '40.330479' , '150822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '乌拉特前旗' , '0478' , '108.656816' , '40.725209' , '150823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '乌拉特后旗' , '0478' , '107.074941' , '41.084307' , '150825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150800' ORDER BY id ASC LIMIT 1) m), '杭锦后旗' , '0478' , '107.147682' , '40.888797' , '150826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '呼伦贝尔市' , '0470' , '119.758168' , '49.215333' , '150700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '鄂温克族自治旗' , '0470' , '119.754041' , '49.143293' , '150724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '根河市' , '0470' , '121.532724' , '50.780454' , '150785' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '阿荣旗' , '0470' , '123.464615' , '48.130503' , '150721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '牙克石市' , '0470' , '120.729005' , '49.287024' , '150782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '陈巴尔虎旗' , '0470' , '119.437609' , '49.328422' , '150725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '扎兰屯市' , '0470' , '122.744401' , '48.007412' , '150783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '额尔古纳市' , '0470' , '120.178636' , '50.2439' , '150784' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '海拉尔区' , '0470' , '119.764923' , '49.213889' , '150702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '新巴尔虎左旗' , '0470' , '118.267454' , '48.216571' , '150726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '满洲里市' , '0470' , '117.455561' , '49.590788' , '150781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '扎赉诺尔区' , '0470' , '117.716373' , '49.456567' , '150703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '新巴尔虎右旗' , '0470' , '116.825991' , '48.669134' , '150727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '鄂伦春自治旗' , '0470' , '123.725684' , '50.590177' , '150723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150700' ORDER BY id ASC LIMIT 1) m), '莫力达瓦达斡尔族自治旗' , '0470' , '124.507401' , '48.478385' , '150722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '包头市' , '0472' , '109.840405' , '40.658168' , '150200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '达尔罕茂明安联合旗' , '0472' , '110.438452' , '41.702836' , '150223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '土默特右旗' , '0472' , '110.526766' , '40.566434' , '150221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '白云鄂博矿区' , '0472' , '109.97016' , '41.769246' , '150206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '固阳县' , '0472' , '110.063421' , '41.030004' , '150222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '昆都仑区' , '0472' , '109.822932' , '40.661345' , '150203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '东河区' , '0472' , '110.026895' , '40.587056' , '150202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '石拐区' , '0472' , '110.272565' , '40.672094' , '150205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '青山区' , '0472' , '109.880049' , '40.668558' , '150204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150200' ORDER BY id ASC LIMIT 1) m), '九原区' , '0472' , '109.968122' , '40.600581' , '150207' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '乌海市' , '0473' , '106.825563' , '39.673734' , '150300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150300' ORDER BY id ASC LIMIT 1) m), '乌达区' , '0473' , '106.722711' , '39.502288' , '150304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150300' ORDER BY id ASC LIMIT 1) m), '海勃湾区' , '0473' , '106.817762' , '39.673527' , '150302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150300' ORDER BY id ASC LIMIT 1) m), '海南区' , '0473' , '106.884789' , '39.44153' , '150303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '阿拉善盟' , '0483' , '105.706422' , '38.844814' , '152900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152900' ORDER BY id ASC LIMIT 1) m), '额济纳旗' , '0483' , '101.06944' , '41.958813' , '152923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152900' ORDER BY id ASC LIMIT 1) m), '阿拉善右旗' , '0483' , '101.671984' , '39.21159' , '152922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152900' ORDER BY id ASC LIMIT 1) m), '阿拉善左旗' , '0483' , '105.70192' , '38.847241' , '152921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '通辽市' , '0475' , '122.263119' , '43.617429' , '150500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '扎鲁特旗' , '0475' , '120.905275' , '44.555294' , '150526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '霍林郭勒市' , '0475' , '119.657862' , '45.532361' , '150581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '开鲁县' , '0475' , '121.308797' , '43.602432' , '150523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '科尔沁左翼中旗' , '0475' , '123.313873' , '44.127166' , '150521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '奈曼旗' , '0475' , '120.662543' , '42.84685' , '150525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '科尔沁区' , '0475' , '122.264042' , '43.617422' , '150502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '库伦旗' , '0475' , '121.774886' , '42.734692' , '150524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150500' ORDER BY id ASC LIMIT 1) m), '科尔沁左翼后旗' , '0475' , '122.355155' , '42.954564' , '150522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '兴安盟' , '0482' , '122.070317' , '46.076268' , '152200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '阿尔山市' , '0482' , '119.943656' , '47.177' , '152202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '科尔沁右翼中旗' , '0482' , '121.472818' , '45.059645' , '152222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '突泉县' , '0482' , '121.564856' , '45.380986' , '152224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '乌兰浩特市' , '0482' , '122.068975' , '46.077238' , '152201' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '扎赉特旗' , '0482' , '122.909332' , '46.725136' , '152223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152200' ORDER BY id ASC LIMIT 1) m), '科尔沁右翼前旗' , '0482' , '121.957544' , '46.076497' , '152221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '锡林郭勒盟' , '0479' , '116.090996' , '43.944018' , '152500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '东乌珠穆沁旗' , '0479' , '116.980022' , '45.510307' , '152525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '西乌珠穆沁旗' , '0479' , '117.615249' , '44.586147' , '152526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '阿巴嘎旗' , '0479' , '114.970618' , '44.022728' , '152522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '锡林浩特市' , '0479' , '116.091903' , '43.944301' , '152502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '苏尼特左旗' , '0479' , '113.653412' , '43.854108' , '152523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '二连浩特市' , '0479' , '111.97981' , '43.652895' , '152501' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '苏尼特右旗' , '0479' , '112.65539' , '42.746662' , '152524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '镶黄旗' , '0479' , '113.843869' , '42.239229' , '152528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '正镶白旗' , '0479' , '115.031423' , '42.286807' , '152529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '多伦县' , '0479' , '116.477288' , '42.197962' , '152531' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '正蓝旗' , '0479' , '116.003311' , '42.245895' , '152530' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '152500' ORDER BY id ASC LIMIT 1) m), '太仆寺旗' , '0479' , '115.28728' , '41.895199' , '152527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '呼和浩特市' , '0471' , '111.670801' , '40.818311' , '150100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '和林格尔县' , '0471' , '111.824143' , '40.380288' , '150123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '回民区' , '0471' , '111.662162' , '40.815149' , '150103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '玉泉区' , '0471' , '111.66543' , '40.799421' , '150104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '武川县' , '0471' , '111.456563' , '41.094483' , '150125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '托克托县' , '0471' , '111.197317' , '40.276729' , '150122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '土默特左旗' , '0471' , '111.133615' , '40.720416' , '150121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '赛罕区' , '0471' , '111.698463' , '40.807834' , '150105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '新城区' , '0471' , '111.685964' , '40.826225' , '150102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150100' ORDER BY id ASC LIMIT 1) m), '清水河县' , '0471' , '111.67222' , '39.912479' , '150124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '赤峰市' , '0476' , '118.956806' , '42.275317' , '150400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '阿鲁科尔沁旗' , '0476' , '120.094969' , '43.87877' , '150421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '巴林左旗' , '0476' , '119.391737' , '43.980715' , '150422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '巴林右旗' , '0476' , '118.678347' , '43.528963' , '150423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '林西县' , '0476' , '118.05775' , '43.605326' , '150424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '克什克腾旗' , '0476' , '117.542465' , '43.256233' , '150425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '翁牛特旗' , '0476' , '119.022619' , '42.937128' , '150426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '松山区' , '0476' , '118.938958' , '42.281046' , '150404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '元宝山区' , '0476' , '119.289877' , '42.041168' , '150403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '喀喇沁旗' , '0476' , '118.708572' , '41.92778' , '150428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '红山区' , '0476' , '118.961087' , '42.269732' , '150402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '敖汉旗' , '0476' , '119.906486' , '42.287012' , '150430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150400' ORDER BY id ASC LIMIT 1) m), '宁城县' , '0476' , '119.339242' , '41.598692' , '150429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '乌兰察布市' , '0474' , '113.114543' , '41.034126' , '150900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '四子王旗' , '0474' , '111.70123' , '41.528114' , '150929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '化德县' , '0474' , '114.01008' , '41.899335' , '150922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '察哈尔右翼中旗' , '0474' , '112.633563' , '41.274212' , '150927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '商都县' , '0474' , '113.560643' , '41.560163' , '150923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '卓资县' , '0474' , '112.577702' , '40.89576' , '150921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '察哈尔右翼后旗' , '0474' , '113.1906' , '41.447213' , '150928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '兴和县' , '0474' , '113.834009' , '40.872437' , '150924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '丰镇市' , '0474' , '113.163462' , '40.437534' , '150981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '察哈尔右翼前旗' , '0474' , '113.211958' , '40.786859' , '150926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '集宁区' , '0474' , '113.116453' , '41.034134' , '150902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150900' ORDER BY id ASC LIMIT 1) m), '凉城县' , '0474' , '112.500911' , '40.531627' , '150925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150000' ORDER BY id ASC LIMIT 1) m), '鄂尔多斯市' , '0477' , '109.99029' , '39.817179' , '150600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '鄂托克旗' , '0477' , '107.982604' , '39.095752' , '150624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '达拉特旗' , '0477' , '110.040281' , '40.404076' , '150621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '乌审旗' , '0477' , '108.842454' , '38.596611' , '150626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '杭锦旗' , '0477' , '108.736324' , '39.831789' , '150625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '鄂托克前旗' , '0477' , '107.48172' , '38.183257' , '150623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '伊金霍洛旗' , '0477' , '109.787402' , '39.604312' , '150627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '康巴什区' , '0477' , '109.790076' , '39.607472' , '150603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '东胜区' , '0477' , '109.98945' , '39.81788' , '150602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '150600' ORDER BY id ASC LIMIT 1) m), '准格尔旗' , '0477' , '111.238332' , '39.865221' , '150622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '湖北省' , '' , '114.298572' , '30.584355' , '420000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '天门市' , '1728' , '113.165862' , '30.653061' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '胡市镇' , '1728' , '113.422' , '30.802' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '黄潭镇' , '1728' , '113.039' , '30.6922' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '多祥镇' , '1728' , '113.358' , '30.4234' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '沉湖管委会' , '1728' , '113.399' , '30.4588' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '干驿镇' , '1728' , '113.451' , '30.503' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '横林镇' , '1728' , '113.215' , '30.5643' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '马湾镇' , '1728' , '113.312' , '30.5993' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '蒋湖农场' , '1728' , '112.802' , '30.6364' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '小板镇' , '1728' , '113.264' , '30.6151' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '岳口镇' , '1728' , '113.105' , '30.5868' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '多宝镇' , '1728' , '112.614' , '30.7034' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '蒋场镇' , '1728' , '112.927' , '30.646' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '石家河镇' , '1728' , '113.076' , '30.8211' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '彭市镇' , '1728' , '113.157' , '30.4315' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '佛子山镇' , '1728' , '113.068' , '30.6892' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '九真镇' , '1728' , '113.206' , '30.8245' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '竟陵街道' , '1728' , '113.183' , '30.7066' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '侨乡街道开发区' , '1728' , '113.134' , '30.652' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '麻洋镇' , '1728' , '113.309' , '30.5249' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '杨林街道' , '1728' , '113.265' , '30.6856' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '皂市镇' , '1728' , '113.223' , '30.7957' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '汪场镇' , '1728' , '112.979' , '30.638' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '白茅湖农场' , '1728' , '113.063' , '30.5868' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '渔薪镇' , '1728' , '112.879' , '30.6744' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '张港镇' , '1728' , '112.801' , '30.5529' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '拖市镇' , '1728' , '112.856' , '30.7135' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '卢市镇' , '1728' , '113.397' , '30.6596' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429006' ORDER BY id ASC LIMIT 1) m), '净潭乡' , '1728' , '113.451' , '30.6464' , '429006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '武汉市' , '027' , '114.298572' , '30.584355' , '420100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '黄陂区' , '027' , '114.374025' , '30.874155' , '420116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '新洲区' , '027' , '114.802108' , '30.842149' , '420117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '蔡甸区' , '027' , '114.029341' , '30.582186' , '420114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '汉南区' , '027' , '114.08124' , '30.309637' , '420113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '江夏区' , '027' , '114.313961' , '30.349045' , '420115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '武昌区' , '027' , '114.307344' , '30.546536' , '420106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '硚口区' , '027' , '114.264568' , '30.57061' , '420104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '汉阳区' , '027' , '114.265807' , '30.549326' , '420105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '东西湖区' , '027' , '114.142483' , '30.622467' , '420112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '青山区' , '027' , '114.39707' , '30.634215' , '420107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '江岸区' , '027' , '114.30304' , '30.594911' , '420102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '江汉区' , '027' , '114.283109' , '30.578771' , '420103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420100' ORDER BY id ASC LIMIT 1) m), '洪山区' , '027' , '114.400718' , '30.504259' , '420111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '襄阳市' , '0710' , '112.144146' , '32.042426' , '420600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '谷城县' , '0710' , '111.640147' , '32.262676' , '420625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '老河口市' , '0710' , '111.675732' , '32.385438' , '420682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '枣阳市' , '0710' , '112.765268' , '32.123083' , '420683' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '宜城市' , '0710' , '112.261441' , '31.709203' , '420684' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '保康县' , '0710' , '111.262235' , '31.873507' , '420626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '襄城区' , '0710' , '112.150327' , '32.015088' , '420602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '樊城区' , '0710' , '112.13957' , '32.058589' , '420606' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '南漳县' , '0710' , '111.844424' , '31.77692' , '420624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420600' ORDER BY id ASC LIMIT 1) m), '襄州区' , '0710' , '112.197378' , '32.085517' , '420607' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '宜昌市' , '0717' , '111.290843' , '30.702636' , '420500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '兴山县' , '0717' , '110.754499' , '31.34795' , '420526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '当阳市' , '0717' , '111.793419' , '30.824492' , '420582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '秭归县' , '0717' , '110.976785' , '30.823908' , '420527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '伍家岗区' , '0717' , '111.307215' , '30.679053' , '420503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '长阳土家族自治县' , '0717' , '111.198475' , '30.466534' , '420528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '枝江市' , '0717' , '111.751799' , '30.425364' , '420583' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '点军区' , '0717' , '111.268163' , '30.692322' , '420504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '猇亭区' , '0717' , '111.427642' , '30.530744' , '420505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '五峰土家族自治县' , '0717' , '110.674938' , '30.199252' , '420529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '宜都市' , '0717' , '111.454367' , '30.387234' , '420581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '西陵区' , '0717' , '111.295468' , '30.702476' , '420502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '夷陵区' , '0717' , '111.326747' , '30.770199' , '420506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420500' ORDER BY id ASC LIMIT 1) m), '远安县' , '0717' , '111.64331' , '31.059626' , '420525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '孝感市' , '0712' , '113.926655' , '30.926423' , '420900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '云梦县' , '0712' , '113.750616' , '31.021691' , '420923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '应城市' , '0712' , '113.573842' , '30.939038' , '420981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '孝南区' , '0712' , '113.925849' , '30.925966' , '420902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '汉川市' , '0712' , '113.835301' , '30.652165' , '420984' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '孝昌县' , '0712' , '113.988964' , '31.251618' , '420921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '安陆市' , '0712' , '113.690401' , '31.26174' , '420982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420900' ORDER BY id ASC LIMIT 1) m), '大悟县' , '0712' , '114.126249' , '31.565483' , '420922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '黄冈市' , '0713' , '114.879365' , '30.447711' , '421100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '麻城市' , '0713' , '115.02541' , '31.177906' , '421181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '蕲春县' , '0713' , '115.433964' , '30.234927' , '421126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '黄州区' , '0713' , '114.878934' , '30.447435' , '421102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '浠水县' , '0713' , '115.26344' , '30.454837' , '421125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '英山县' , '0713' , '115.67753' , '30.735794' , '421124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '红安县' , '0713' , '114.615095' , '31.284777' , '421122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '黄梅县' , '0713' , '115.942548' , '30.075113' , '421127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '武穴市' , '0713' , '115.56242' , '29.849342' , '421182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '罗田县' , '0713' , '115.398984' , '30.781679' , '421123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421100' ORDER BY id ASC LIMIT 1) m), '团风县' , '0713' , '114.872029' , '30.63569' , '421121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '十堰市' , '0719' , '110.787916' , '32.646907' , '420300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '郧阳区' , '0719' , '110.812099' , '32.838267' , '420304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '张湾区' , '0719' , '110.772365' , '32.652516' , '420303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '茅箭区' , '0719' , '110.78621' , '32.644463' , '420302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '丹江口市' , '0719' , '111.513793' , '32.538839' , '420381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '竹溪县' , '0719' , '109.717196' , '32.315342' , '420324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '竹山县' , '0719' , '110.2296' , '32.22586' , '420323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '房县' , '0719' , '110.741966' , '32.055002' , '420325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420300' ORDER BY id ASC LIMIT 1) m), '郧西县' , '0719' , '110.426472' , '32.991457' , '420322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '荆门市' , '0724' , '112.204251' , '31.03542' , '420800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420800' ORDER BY id ASC LIMIT 1) m), '东宝区' , '0724' , '112.204804' , '31.033461' , '420802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420800' ORDER BY id ASC LIMIT 1) m), '钟祥市' , '0724' , '112.587267' , '31.165573' , '420881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420800' ORDER BY id ASC LIMIT 1) m), '掇刀区' , '0724' , '112.198413' , '30.980798' , '420804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420800' ORDER BY id ASC LIMIT 1) m), '京山市' , '0724' , '113.114595' , '31.022457' , '420882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420800' ORDER BY id ASC LIMIT 1) m), '沙洋县' , '0724' , '112.595218' , '30.70359' , '420822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '潜江市' , '2728' , '112.896866' , '30.421215' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '积玉口镇' , '2728' , '112.721' , '30.4185' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '广华街道' , '2728' , '112.666' , '30.4633' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '泰丰街道' , '2728' , '112.981' , '30.4167' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '周矶管理区' , '2728' , '112.826' , '30.4567' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '潜江经济开发区' , '2728' , '112.883' , '30.4825' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '高场街道' , '2728' , '112.775' , '30.4076' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '周矶街道' , '2728' , '112.818' , '30.4576' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '总口管理区' , '2728' , '112.89' , '30.2581' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '运粮湖管理区' , '2728' , '112.582' , '30.252' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '王场镇' , '2728' , '112.819' , '30.4906' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '白鹭湖管理区' , '2728' , '112.716' , '30.1788' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '园林街道' , '2728' , '112.91' , '30.377' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '竹根滩镇' , '2728' , '112.979' , '30.4716' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '渔洋镇' , '2728' , '112.966' , '30.2392' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '熊口镇' , '2728' , '112.724' , '30.3404' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '熊口管理区' , '2728' , '112.802' , '30.195' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '江汉石油管理局' , '2728' , '112.793' , '30.4635' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '后湖管理区' , '2728' , '112.768' , '30.4049' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '张金镇' , '2728' , '112.577' , '30.2389' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '杨市街道' , '2728' , '112.915' , '30.3835' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '浩口原种场' , '2728' , '112.643' , '30.3784' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '龙湾镇' , '2728' , '112.69' , '30.2848' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '高石碑镇' , '2728' , '112.626' , '30.6203' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '老新镇' , '2728' , '112.81' , '30.2185' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429005' ORDER BY id ASC LIMIT 1) m), '浩口镇' , '2728' , '112.65' , '30.3695' , '429005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '恩施土家族苗族自治州' , '0718' , '109.48699' , '30.283114' , '422800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '建始县' , '0718' , '109.723822' , '30.601632' , '422822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '恩施市' , '0718' , '109.486761' , '30.282406' , '422801' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '利川市' , '0718' , '108.943491' , '30.294247' , '422802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '鹤峰县' , '0718' , '110.033699' , '29.887298' , '422828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '来凤县' , '0718' , '109.408328' , '29.506945' , '422827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '巴东县' , '0718' , '110.336665' , '31.041403' , '422823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '宣恩县' , '0718' , '109.482819' , '29.98867' , '422825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '422800' ORDER BY id ASC LIMIT 1) m), '咸丰县' , '0718' , '109.15041' , '29.678967' , '422826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '随州市' , '0722' , '113.37377' , '31.717497' , '421300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421300' ORDER BY id ASC LIMIT 1) m), '曾都区' , '0722' , '113.374519' , '31.717521' , '421303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421300' ORDER BY id ASC LIMIT 1) m), '随县' , '0722' , '113.301384' , '31.854246' , '421321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421300' ORDER BY id ASC LIMIT 1) m), '广水市' , '0722' , '113.826601' , '31.617731' , '421381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '咸宁市' , '0715' , '114.328963' , '29.832798' , '421200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '嘉鱼县' , '0715' , '113.921547' , '29.973363' , '421221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '通山县' , '0715' , '114.493163' , '29.604455' , '421224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '咸安区' , '0715' , '114.333894' , '29.824716' , '421202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '赤壁市' , '0715' , '113.88366' , '29.716879' , '421281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '通城县' , '0715' , '113.814131' , '29.246076' , '421222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421200' ORDER BY id ASC LIMIT 1) m), '崇阳县' , '0715' , '114.049958' , '29.54101' , '421223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '神农架林区' , '1719' , '110.671525' , '31.744449' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '木鱼镇' , '1719' , '110.312' , '31.3933' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '下谷坪土家族乡' , '1719' , '110.113' , '31.4153' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '新华镇' , '1719' , '110.842' , '31.6218' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '九湖镇' , '1719' , '110.062' , '31.4095' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '宋洛乡' , '1719' , '110.59' , '31.7303' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '红坪镇' , '1719' , '110.196' , '31.4718' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '松柏镇' , '1719' , '110.609' , '31.7041' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429021' ORDER BY id ASC LIMIT 1) m), '阳日镇' , '1719' , '110.763' , '31.677' , '429021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '仙桃市' , '0728' , '113.453974' , '30.364953' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '畜禽良种场' , '0728' , '113.751' , '30.1779' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '豆河镇' , '0728' , '113' , '30.37' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '工业园区' , '0728' , '113.413' , '30.3233' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '沙湖镇' , '0728' , '113.6' , '30.1698' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '通海口镇' , '0728' , '113.206' , '30.2722' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '长倘口镇' , '0728' , '113.598' , '30.3512' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '胡场镇' , '0728' , '113.29' , '30.4278' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '五湖渔场' , '0728' , '113.783' , '30.161' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '干河街道' , '0728' , '113.451' , '30.3772' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '杨林尾镇' , '0728' , '113.561' , '30.2014' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '西流河镇' , '0728' , '113.761' , '30.297' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '赵西垸林场' , '0728' , '113.027' , '30.285' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '九合垸原种场' , '0728' , '113.006' , '30.2473' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '彭场镇' , '0728' , '113.446' , '30.2518' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '沔城回族镇' , '0728' , '113.201' , '30.1921' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '龙华山街道' , '0728' , '113.46' , '30.3649' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '沙湖原种场' , '0728' , '113.643' , '30.1482' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '陈场镇' , '0728' , '113.111' , '30.2879' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '郑场镇' , '0728' , '112.979' , '30.4707' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '郭河镇' , '0728' , '113.304' , '30.3027' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '排湖风景区' , '0728' , '113.223' , '30.2987' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '沙嘴街道' , '0728' , '113.441' , '30.3596' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '毛嘴镇' , '0728' , '113.045' , '30.4188' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '张沟镇' , '0728' , '113.438' , '30.2968' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '429004' ORDER BY id ASC LIMIT 1) m), '三伏潭镇' , '0728' , '113.207' , '30.3395' , '429004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '荆州市' , '0716' , '112.23813' , '30.326857' , '421000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '江陵县' , '0716' , '112.41735' , '30.033919' , '421024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '监利市' , '0716' , '112.904344' , '29.820079' , '421088' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '石首市' , '0716' , '112.40887' , '29.716437' , '421081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '洪湖市' , '0716' , '113.470304' , '29.81297' , '421083' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '松滋市' , '0716' , '111.77818' , '30.176037' , '421087' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '沙市区' , '0716' , '112.257433' , '30.315895' , '421002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '公安县' , '0716' , '112.230179' , '30.059065' , '421022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '421000' ORDER BY id ASC LIMIT 1) m), '荆州区' , '0716' , '112.195354' , '30.350674' , '421003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '黄石市' , '0714' , '115.077048' , '30.220074' , '420200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '铁山区' , '0714' , '114.901366' , '30.20601' , '420205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '下陆区' , '0714' , '114.975755' , '30.177845' , '420204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '西塞山区' , '0714' , '115.093354' , '30.205365' , '420203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '大冶市' , '0714' , '114.974842' , '30.098804' , '420281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '阳新县' , '0714' , '115.212883' , '29.841572' , '420222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420200' ORDER BY id ASC LIMIT 1) m), '黄石港区' , '0714' , '115.090164' , '30.212086' , '420202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420000' ORDER BY id ASC LIMIT 1) m), '鄂州市' , '0711' , '114.890593' , '30.396536' , '420700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420700' ORDER BY id ASC LIMIT 1) m), '华容区' , '0711' , '114.74148' , '30.534468' , '420703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420700' ORDER BY id ASC LIMIT 1) m), '梁子湖区' , '0711' , '114.681967' , '30.098191' , '420702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '420700' ORDER BY id ASC LIMIT 1) m), '鄂城区' , '0711' , '114.890012' , '30.39669' , '420704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '黑龙江省' , '' , '126.642464' , '45.756967' , '230000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '七台河市' , '0464' , '131.015584' , '45.771266' , '230900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230900' ORDER BY id ASC LIMIT 1) m), '桃山区' , '0464' , '131.015848' , '45.771217' , '230903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230900' ORDER BY id ASC LIMIT 1) m), '茄子河区' , '0464' , '131.071561' , '45.776587' , '230904' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230900' ORDER BY id ASC LIMIT 1) m), '勃利县' , '0464' , '130.575025' , '45.751573' , '230921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230900' ORDER BY id ASC LIMIT 1) m), '新兴区' , '0464' , '130.889482' , '45.794258' , '230902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '大兴安岭地区' , '0457' , '124.711526' , '52.335262' , '232700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '232700' ORDER BY id ASC LIMIT 1) m), '漠河市' , '0457' , '122.536256' , '52.972074' , '232701' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '232700' ORDER BY id ASC LIMIT 1) m), '塔河县' , '0457' , '124.710516' , '52.335229' , '232722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '232700' ORDER BY id ASC LIMIT 1) m), '呼玛县' , '0457' , '126.662105' , '51.726998' , '232721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '232700' ORDER BY id ASC LIMIT 1) m), '加格达奇区' , '0457' , '124.126716' , '50.424654' , '232718' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '鹤岗市' , '0468' , '130.277487' , '47.332085' , '230400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '绥滨县' , '0468' , '131.860526' , '47.289892' , '230422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '工农区' , '0468' , '130.276652' , '47.331678' , '230403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '南山区' , '0468' , '130.275533' , '47.31324' , '230404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '向阳区' , '0468' , '130.292478' , '47.345372' , '230402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '兴山区' , '0468' , '130.30534' , '47.35997' , '230407' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '萝北县' , '0468' , '130.829087' , '47.577577' , '230421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '东山区' , '0468' , '130.31714' , '47.337385' , '230406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230400' ORDER BY id ASC LIMIT 1) m), '兴安区' , '0468' , '130.236169' , '47.252911' , '230405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '伊春市' , '0458' , '128.899396' , '47.724775' , '230700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '嘉荫县' , '0458' , '130.397684' , '48.891378' , '230722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '友好区' , '0458' , '128.84075' , '47.853778' , '230719' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '金林区' , '0458' , '129.429117' , '47.413074' , '230751' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '汤旺县' , '0458' , '129.571108' , '48.454651' , '230723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '丰林县' , '0458' , '129.5336' , '48.290455' , '230724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '伊美区' , '0458' , '128.907303' , '47.728171' , '230717' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '铁力市' , '0458' , '128.030561' , '46.985772' , '230781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '乌翠区' , '0458' , '128.669859' , '47.726728' , '230718' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '大箐山县' , '0458' , '129.020793' , '47.028397' , '230725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230700' ORDER BY id ASC LIMIT 1) m), '南岔县' , '0458' , '129.28246' , '47.137314' , '230726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '哈尔滨市' , '0451' , '126.642464' , '45.756967' , '230100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '巴彦县' , '0451' , '127.403602' , '46.081889' , '230126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '依兰县' , '0451' , '129.565594' , '46.315105' , '230123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '通河县' , '0451' , '128.747786' , '45.977618' , '230128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '木兰县' , '0451' , '128.042675' , '45.949826' , '230127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '延寿县' , '0451' , '128.331886' , '45.455648' , '230129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '宾县' , '0451' , '127.48594' , '45.759369' , '230125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '方正县' , '0451' , '128.836131' , '45.839536' , '230124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '双城区' , '0451' , '126.308784' , '45.377942' , '230113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '平房区' , '0451' , '126.629257' , '45.605567' , '230108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '尚志市' , '0451' , '127.968539' , '45.214953' , '230183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '香坊区' , '0451' , '126.667049' , '45.713067' , '230110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '道里区' , '0451' , '126.612532' , '45.762035' , '230102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '五常市' , '0451' , '127.15759' , '44.919418' , '230184' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '阿城区' , '0451' , '126.972726' , '45.538372' , '230112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '松北区' , '0451' , '126.563066' , '45.814656' , '230109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '呼兰区' , '0451' , '126.603302' , '45.98423' , '230111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '南岗区' , '0451' , '126.652098' , '45.755971' , '230103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230100' ORDER BY id ASC LIMIT 1) m), '道外区' , '0451' , '126.648838' , '45.78454' , '230104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '绥化市' , '0455' , '126.99293' , '46.637393' , '231200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '绥棱县' , '0455' , '127.111121' , '47.247195' , '231226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '海伦市' , '0455' , '126.969383' , '47.460428' , '231283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '庆安县' , '0455' , '127.510024' , '46.879203' , '231224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '北林区' , '0455' , '126.990665' , '46.634912' , '231202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '望奎县' , '0455' , '126.484191' , '46.83352' , '231221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '青冈县' , '0455' , '126.112268' , '46.686596' , '231223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '明水县' , '0455' , '125.907544' , '47.183527' , '231225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '肇东市' , '0455' , '125.991402' , '46.069471' , '231282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '兰西县' , '0455' , '126.289315' , '46.259037' , '231222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231200' ORDER BY id ASC LIMIT 1) m), '安达市' , '0455' , '125.329926' , '46.410614' , '231281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '齐齐哈尔市' , '0452' , '123.95792' , '47.342081' , '230200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '讷河市' , '0452' , '124.882172' , '48.481133' , '230281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '克山县' , '0452' , '125.874355' , '48.034342' , '230229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '甘南县' , '0452' , '123.506034' , '47.917838' , '230225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '克东县' , '0452' , '126.249094' , '48.03732' , '230230' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '富裕县' , '0452' , '124.469106' , '47.797172' , '230227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '依安县' , '0452' , '125.307561' , '47.890098' , '230223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '梅里斯达斡尔族区' , '0452' , '123.754599' , '47.311113' , '230208' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '碾子山区' , '0452' , '122.887972' , '47.51401' , '230207' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '建华区' , '0452' , '123.955888' , '47.354494' , '230203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '龙江县' , '0452' , '123.187225' , '47.336388' , '230221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '铁锋区' , '0452' , '123.973555' , '47.339499' , '230204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '昂昂溪区' , '0452' , '123.813181' , '47.156867' , '230205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '龙沙区' , '0452' , '123.957338' , '47.341736' , '230202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '富拉尔基区' , '0452' , '123.638873' , '47.20697' , '230206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '泰来县' , '0452' , '123.41953' , '46.39233' , '230224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230200' ORDER BY id ASC LIMIT 1) m), '拜泉县' , '0452' , '126.091911' , '47.607363' , '230231' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '鸡西市' , '0467' , '130.975966' , '45.300046' , '230300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '滴道区' , '0467' , '130.846823' , '45.348812' , '230304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '恒山区' , '0467' , '130.910636' , '45.213242' , '230303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '麻山区' , '0467' , '130.481126' , '45.209607' , '230307' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '鸡冠区' , '0467' , '130.974374' , '45.30034' , '230302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '梨树区' , '0467' , '130.697781' , '45.092195' , '230305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '城子河区' , '0467' , '131.010501' , '45.338248' , '230306' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '密山市' , '0467' , '131.874137' , '45.54725' , '230382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '鸡东县' , '0467' , '131.148907' , '45.250892' , '230321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230300' ORDER BY id ASC LIMIT 1) m), '虎林市' , '0467' , '132.973881' , '45.767985' , '230381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '佳木斯市' , '0454' , '130.361634' , '46.809606' , '230800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '同江市' , '0454' , '132.510119' , '47.651131' , '230881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '桦川县' , '0454' , '130.723713' , '47.023039' , '230826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '汤原县' , '0454' , '129.904463' , '46.730048' , '230828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '东风区' , '0454' , '130.403297' , '46.822476' , '230805' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '郊区' , '0454' , '130.351588' , '46.80712' , '230811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '向阳区' , '0454' , '130.361786' , '46.809645' , '230803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '前进区' , '0454' , '130.377684' , '46.812345' , '230804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '桦南县' , '0454' , '130.570112' , '46.240118' , '230822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '抚远市' , '0454' , '134.294501' , '48.364707' , '230883' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230800' ORDER BY id ASC LIMIT 1) m), '富锦市' , '0454' , '132.037951' , '47.250747' , '230882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '大庆市' , '0459' , '125.11272' , '46.590734' , '230600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '让胡路区' , '0459' , '124.868341' , '46.653254' , '230604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '红岗区' , '0459' , '124.889528' , '46.403049' , '230605' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '肇源县' , '0459' , '125.081974' , '45.518832' , '230622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '大同区' , '0459' , '124.818509' , '46.034304' , '230606' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '杜尔伯特蒙古族自治县' , '0459' , '124.446259' , '46.865973' , '230624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '林甸县' , '0459' , '124.877742' , '47.186411' , '230623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '萨尔图区' , '0459' , '125.114643' , '46.596356' , '230602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '龙凤区' , '0459' , '125.145794' , '46.573948' , '230603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230600' ORDER BY id ASC LIMIT 1) m), '肇州县' , '0459' , '125.273254' , '45.708685' , '230621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '双鸭山市' , '0469' , '131.157304' , '46.643442' , '230500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '友谊县' , '0469' , '131.810622' , '46.775159' , '230522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '岭东区' , '0469' , '131.163675' , '46.591076' , '230503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '尖山区' , '0469' , '131.15896' , '46.642961' , '230502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '宝山区' , '0469' , '131.404294' , '46.573366' , '230506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '宝清县' , '0469' , '132.206415' , '46.328781' , '230523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '饶河县' , '0469' , '134.021162' , '46.801288' , '230524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '集贤县' , '0469' , '131.13933' , '46.72898' , '230521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230500' ORDER BY id ASC LIMIT 1) m), '四方台区' , '0469' , '131.333181' , '46.594347' , '230505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '黑河市' , '0456' , '127.499023' , '50.249585' , '231100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '爱辉区' , '0456' , '127.497639' , '50.249027' , '231102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '北安市' , '0456' , '126.508737' , '48.245437' , '231181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '逊克县' , '0456' , '128.476152' , '49.582974' , '231123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '孙吴县' , '0456' , '127.327315' , '49.423941' , '231124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '五大连池市' , '0456' , '126.197694' , '48.512688' , '231182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231100' ORDER BY id ASC LIMIT 1) m), '嫩江市' , '0456' , '125.229904' , '49.177461' , '231183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '230000' ORDER BY id ASC LIMIT 1) m), '牡丹江市' , '0453' , '129.618602' , '44.582962' , '231000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '东安区' , '0453' , '129.623292' , '44.582399' , '231002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '爱民区' , '0453' , '129.601232' , '44.595443' , '231004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '绥芬河市' , '0453' , '131.164856' , '44.396864' , '231081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '宁安市' , '0453' , '129.470019' , '44.346836' , '231084' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '林口县' , '0453' , '130.268402' , '45.286645' , '231025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '穆棱市' , '0453' , '130.527085' , '44.91967' , '231085' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '阳明区' , '0453' , '129.634645' , '44.596328' , '231003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '西安区' , '0453' , '129.61311' , '44.581032' , '231005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '海林市' , '0453' , '129.387902' , '44.574149' , '231083' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '231000' ORDER BY id ASC LIMIT 1) m), '东宁市' , '0453' , '131.125296' , '44.063578' , '231086' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '上海市' , '021' , '121.472644' , '31.231706' , '310000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310000' ORDER BY id ASC LIMIT 1) m), '上海城区' , '021' , '121.472644' , '31.231706' , '310100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '浦东新区' , '021' , '121.567706' , '31.245944' , '310115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '崇明区' , '021' , '121.397516' , '31.626946' , '310151' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '金山区' , '021' , '121.330736' , '30.724697' , '310116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '奉贤区' , '021' , '121.458472' , '30.912345' , '310120' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '宝山区' , '021' , '121.489934' , '31.398896' , '310113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '嘉定区' , '021' , '121.250333' , '31.383524' , '310114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '普陀区' , '021' , '121.392499' , '31.241701' , '310107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '黄浦区' , '021' , '121.490317' , '31.222771' , '310101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '杨浦区' , '021' , '121.522797' , '31.270755' , '310110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '松江区' , '021' , '121.223543' , '31.03047' , '310117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '静安区' , '021' , '121.448224' , '31.229003' , '310106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '长宁区' , '021' , '121.4222' , '31.218123' , '310105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '虹口区' , '021' , '121.491832' , '31.26097' , '310109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '徐汇区' , '021' , '121.43752' , '31.179973' , '310104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '青浦区' , '021' , '121.113021' , '31.151209' , '310118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '310100' ORDER BY id ASC LIMIT 1) m), '闵行区' , '021' , '121.375972' , '31.111658' , '310112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '贵州省' , '' , '106.713478' , '26.578343' , '520000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '遵义市' , '0852' , '106.937265' , '27.706626' , '520300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '桐梓县' , '0852' , '106.826591' , '28.131559' , '520322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '绥阳县' , '0852' , '107.191024' , '27.951342' , '520323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '湄潭县' , '0852' , '107.485723' , '27.765839' , '520328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '余庆县' , '0852' , '107.892566' , '27.221552' , '520329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '仁怀市' , '0852' , '106.412476' , '27.803377' , '520382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '播州区' , '0852' , '106.831668' , '27.535288' , '520304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '赤水市' , '0852' , '105.698116' , '28.587057' , '520381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '习水县' , '0852' , '106.200954' , '28.327826' , '520330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '正安县' , '0852' , '107.441872' , '28.550337' , '520324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '道真仡佬族苗族自治县' , '0852' , '107.605342' , '28.880088' , '520325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '务川仡佬族苗族自治县' , '0852' , '107.887857' , '28.521567' , '520326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '凤冈县' , '0852' , '107.722021' , '27.960858' , '520327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '汇川区' , '0852' , '106.937265' , '27.706626' , '520303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520300' ORDER BY id ASC LIMIT 1) m), '红花岗区' , '0852' , '106.943784' , '27.694395' , '520302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '铜仁市' , '0856' , '109.191555' , '27.718346' , '520600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '石阡县' , '0856' , '108.229854' , '27.519386' , '520623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '印江土家族苗族自治县' , '0856' , '108.405517' , '27.997976' , '520625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '德江县' , '0856' , '108.117317' , '28.26094' , '520626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '碧江区' , '0856' , '109.192117' , '27.718745' , '520602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '万山区' , '0856' , '109.21199' , '27.51903' , '520603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '思南县' , '0856' , '108.255827' , '27.941331' , '520624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '玉屏侗族自治县' , '0856' , '108.917882' , '27.238024' , '520622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '松桃苗族自治县' , '0856' , '109.202627' , '28.165419' , '520628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '江口县' , '0856' , '108.848427' , '27.691904' , '520621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520600' ORDER BY id ASC LIMIT 1) m), '沿河土家族自治县' , '0856' , '108.495746' , '28.560487' , '520627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '毕节市' , '0857' , '105.28501' , '27.301693' , '520500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '七星关区' , '0857' , '105.284852' , '27.302085' , '520502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '金沙县' , '0857' , '106.222103' , '27.459693' , '520523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '黔西市' , '0857' , '106.038299' , '27.024923' , '520522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '织金县' , '0857' , '105.768997' , '26.668497' , '520524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '威宁彝族回族苗族自治县' , '0857' , '104.286523' , '26.859099' , '520526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '赫章县' , '0857' , '104.726438' , '27.119243' , '520527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '大方县' , '0857' , '105.609254' , '27.143521' , '520521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520500' ORDER BY id ASC LIMIT 1) m), '纳雍县' , '0857' , '105.375322' , '26.769875' , '520525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '黔西南布依族苗族自治州' , '0859' , '104.897971' , '25.08812' , '522300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '兴仁市' , '0859' , '105.192778' , '25.431378' , '522302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '安龙县' , '0859' , '105.471498' , '25.108959' , '522328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '册亨县' , '0859' , '105.81241' , '24.983338' , '522327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '兴义市' , '0859' , '104.897982' , '25.088599' , '522301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '普安县' , '0859' , '104.955347' , '25.786404' , '522323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '晴隆县' , '0859' , '105.218773' , '25.832881' , '522324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '贞丰县' , '0859' , '105.650133' , '25.385752' , '522325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522300' ORDER BY id ASC LIMIT 1) m), '望谟县' , '0859' , '106.091563' , '25.166667' , '522326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '六盘水市' , '0858' , '104.846743' , '26.584643' , '520200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520200' ORDER BY id ASC LIMIT 1) m), '钟山区' , '0858' , '104.846244' , '26.584805' , '520201' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520200' ORDER BY id ASC LIMIT 1) m), '六枝特区' , '0858' , '105.474235' , '26.210662' , '520203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520200' ORDER BY id ASC LIMIT 1) m), '盘州市' , '0858' , '104.468367' , '25.706966' , '520281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520200' ORDER BY id ASC LIMIT 1) m), '水城区' , '0858' , '104.95685' , '26.540478' , '520204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '安顺市' , '0853' , '105.932188' , '26.245544' , '520400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '西秀区' , '0853' , '105.946169' , '26.248323' , '520402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '紫云苗族布依族自治县' , '0853' , '106.084515' , '25.751567' , '520425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '关岭布依族苗族自治县' , '0853' , '105.618454' , '25.944248' , '520424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '平坝区' , '0853' , '106.259942' , '26.40608' , '520403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '镇宁布依族苗族自治县' , '0853' , '105.768656' , '26.056096' , '520423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520400' ORDER BY id ASC LIMIT 1) m), '普定县' , '0853' , '105.745609' , '26.305794' , '520422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '黔南布依族苗族自治州' , '0854' , '107.517156' , '26.258219' , '522700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '惠水县' , '0854' , '106.657848' , '26.128637' , '522731' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '独山县' , '0854' , '107.542757' , '25.826283' , '522726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '荔波县' , '0854' , '107.8838' , '25.412239' , '522722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '长顺县' , '0854' , '106.447376' , '26.022116' , '522729' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '罗甸县' , '0854' , '106.750006' , '25.429894' , '522728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '平塘县' , '0854' , '107.32405' , '25.831803' , '522727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '贵定县' , '0854' , '107.233588' , '26.580807' , '522723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '瓮安县' , '0854' , '107.478417' , '27.066339' , '522725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '龙里县' , '0854' , '106.977733' , '26.448809' , '522730' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '福泉市' , '0854' , '107.513508' , '26.702508' , '522702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '三都水族自治县' , '0854' , '107.87747' , '25.985183' , '522732' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522700' ORDER BY id ASC LIMIT 1) m), '都匀市' , '0854' , '107.517021' , '26.258205' , '522701' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '黔东南苗族侗族自治州' , '0855' , '107.977488' , '26.583352' , '522600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '雷山县' , '0855' , '108.079613' , '26.381027' , '522634' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '榕江县' , '0855' , '108.521026' , '25.931085' , '522632' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '天柱县' , '0855' , '109.212798' , '26.909684' , '522627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '施秉县' , '0855' , '108.12678' , '27.034657' , '522623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '镇远县' , '0855' , '108.423656' , '27.050233' , '522625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '凯里市' , '0855' , '107.977541' , '26.582964' , '522601' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '丹寨县' , '0855' , '107.794808' , '26.199497' , '522636' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '黎平县' , '0855' , '109.136504' , '26.230636' , '522631' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '从江县' , '0855' , '108.912648' , '25.747058' , '522633' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '锦屏县' , '0855' , '109.20252' , '26.680625' , '522628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '台江县' , '0855' , '108.314637' , '26.669138' , '522630' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '黄平县' , '0855' , '107.901337' , '26.896973' , '522622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '麻江县' , '0855' , '107.593172' , '26.494803' , '522635' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '岑巩县' , '0855' , '108.816459' , '27.173244' , '522626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '剑河县' , '0855' , '108.440499' , '26.727349' , '522629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '522600' ORDER BY id ASC LIMIT 1) m), '三穗县' , '0855' , '108.681121' , '26.959884' , '522624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520000' ORDER BY id ASC LIMIT 1) m), '贵阳市' , '0851' , '106.713478' , '26.578343' , '520100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '息烽县' , '0851' , '106.737693' , '27.092665' , '520122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '开阳县' , '0851' , '106.969438' , '27.056793' , '520121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '白云区' , '0851' , '106.633037' , '26.676849' , '520113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '修文县' , '0851' , '106.599218' , '26.840672' , '520123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '清镇市' , '0851' , '106.470278' , '26.551289' , '520181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '花溪区' , '0851' , '106.670791' , '26.410464' , '520111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '南明区' , '0851' , '106.715963' , '26.573743' , '520102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '观山湖区' , '0851' , '106.626323' , '26.646358' , '520115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '云岩区' , '0851' , '106.713397' , '26.58301' , '520103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '520100' ORDER BY id ASC LIMIT 1) m), '乌当区' , '0851' , '106.762123' , '26.630928' , '520112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '重庆市' , '023' , '106.504962' , '29.533155' , '500000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500000' ORDER BY id ASC LIMIT 1) m), '重庆城区' , '023' , '106.504962' , '29.533155' , '500100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '合川区' , '023' , '106.265554' , '29.990993' , '500117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '潼南区' , '023' , '105.841818' , '30.189554' , '500152' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '渝中区' , '023' , '106.56288' , '29.556742' , '500103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '荣昌区' , '023' , '105.594061' , '29.403627' , '500153' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '长寿区' , '023' , '107.074854' , '29.833671' , '500115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '铜梁区' , '023' , '106.054948' , '29.839944' , '500151' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '永川区' , '023' , '105.894714' , '29.348748' , '500118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '大足区' , '023' , '105.715319' , '29.700498' , '500111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '璧山区' , '023' , '106.231126' , '29.593581' , '500120' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '南川区' , '023' , '107.098153' , '29.156646' , '500119' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '梁平区' , '023' , '107.800034' , '30.672168' , '500155' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '綦江区' , '023' , '106.651417' , '29.028091' , '500110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '万州区' , '023' , '108.380246' , '30.807807' , '500101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '大渡口区' , '023' , '106.48613' , '29.481002' , '500104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '开州区' , '023' , '108.413317' , '31.167735' , '500154' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '九龙坡区' , '023' , '106.480989' , '29.523492' , '500107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '涪陵区' , '023' , '107.394905' , '29.703652' , '500102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '黔江区' , '023' , '108.782577' , '29.527548' , '500114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '江津区' , '023' , '106.253156' , '29.283387' , '500116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '巴南区' , '023' , '106.519423' , '29.381919' , '500113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '南岸区' , '023' , '106.560813' , '29.523992' , '500108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '北碚区' , '023' , '106.437868' , '29.82543' , '500109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '武隆区' , '023' , '107.75655' , '29.32376' , '500156' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '沙坪坝区' , '023' , '106.4542' , '29.541224' , '500106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '渝北区' , '023' , '106.512851' , '29.601451' , '500112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500100' ORDER BY id ASC LIMIT 1) m), '江北区' , '023' , '106.532844' , '29.575352' , '500105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500000' ORDER BY id ASC LIMIT 1) m), '重庆郊县' , '023' , '108.170255' , '29.291965' , '500200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '城口县' , '023' , '108.6649' , '31.946293' , '500229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '奉节县' , '023' , '109.465774' , '31.019967' , '500236' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '巫溪县' , '023' , '109.628912' , '31.3966' , '500238' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '彭水苗族土家族自治县' , '023' , '108.166551' , '29.293856' , '500243' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '垫江县' , '023' , '107.348692' , '30.330012' , '500231' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '秀山土家族苗族自治县' , '023' , '108.996043' , '28.444772' , '500241' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '云阳县' , '023' , '108.697698' , '30.930529' , '500235' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '石柱土家族自治县' , '023' , '108.112448' , '29.99853' , '500240' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '忠县' , '023' , '108.037518' , '30.291537' , '500233' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '丰都县' , '023' , '107.73248' , '29.866424' , '500230' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '酉阳土家族苗族自治县' , '023' , '108.767201' , '28.839828' , '500242' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '500200' ORDER BY id ASC LIMIT 1) m), '巫山县' , '023' , '109.878928' , '31.074843' , '500237' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '山东省' , '' , '117.000923' , '36.675807' , '370000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '烟台市' , '0535' , '121.391382' , '37.539297' , '370600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '蓬莱区' , '0535' , '120.759074' , '37.811045' , '370614' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '芝罘区' , '0535' , '121.385877' , '37.540925' , '370602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '莱州市' , '0535' , '119.942135' , '37.182725' , '370683' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '海阳市' , '0535' , '121.168392' , '36.780657' , '370687' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '龙口市' , '0535' , '120.528328' , '37.648446' , '370681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '莱阳市' , '0535' , '120.711151' , '36.977037' , '370682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '招远市' , '0535' , '120.403142' , '37.364919' , '370685' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '牟平区' , '0535' , '121.60151' , '37.388356' , '370612' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '莱山区' , '0535' , '121.448866' , '37.473549' , '370613' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '栖霞市' , '0535' , '120.834097' , '37.305854' , '370686' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370600' ORDER BY id ASC LIMIT 1) m), '福山区' , '0535' , '121.264741' , '37.496875' , '370611' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '威海市' , '0631' , '122.116394' , '37.509691' , '371000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371000' ORDER BY id ASC LIMIT 1) m), '环翠区' , '0631' , '122.116189' , '37.510754' , '371002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371000' ORDER BY id ASC LIMIT 1) m), '荣成市' , '0631' , '122.422896' , '37.160134' , '371082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371000' ORDER BY id ASC LIMIT 1) m), '文登区' , '0631' , '122.057139' , '37.196211' , '371003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371000' ORDER BY id ASC LIMIT 1) m), '乳山市' , '0631' , '121.536346' , '36.919622' , '371083' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '青岛市' , '0532' , '120.355173' , '36.082982' , '370200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '莱西市' , '0532' , '120.526226' , '36.86509' , '370285' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '即墨区' , '0532' , '120.447352' , '36.390847' , '370215' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '黄岛区' , '0532' , '119.995518' , '35.875138' , '370211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '城阳区' , '0532' , '120.389135' , '36.306833' , '370214' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '崂山区' , '0532' , '120.467393' , '36.102569' , '370212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '市北区' , '0532' , '120.355026' , '36.083819' , '370203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '市南区' , '0532' , '120.395966' , '36.070892' , '370202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '李沧区' , '0532' , '120.421236' , '36.160023' , '370213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '平度市' , '0532' , '119.959012' , '36.788828' , '370283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370200' ORDER BY id ASC LIMIT 1) m), '胶州市' , '0532' , '120.006202' , '36.285878' , '370281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '聊城市' , '0635' , '115.980367' , '36.456013' , '371500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '冠县' , '0635' , '115.444808' , '36.483753' , '371525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '莘县' , '0635' , '115.667291' , '36.237597' , '371522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '茌平区' , '0635' , '116.25335' , '36.591934' , '371503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '东昌府区' , '0635' , '115.980023' , '36.45606' , '371502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '东阿县' , '0635' , '116.248855' , '36.336004' , '371524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '阳谷县' , '0635' , '115.784287' , '36.113708' , '371521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '高唐县' , '0635' , '116.229662' , '36.859755' , '371526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371500' ORDER BY id ASC LIMIT 1) m), '临清市' , '0635' , '115.713462' , '36.842598' , '371581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '临沂市' , '0539' , '118.326443' , '35.065282' , '371300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '沂水县' , '0539' , '118.634543' , '35.787029' , '371323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '蒙阴县' , '0539' , '117.943271' , '35.712435' , '371328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '平邑县' , '0539' , '117.631884' , '35.511519' , '371326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '兰山区' , '0539' , '118.327667' , '35.061631' , '371302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '郯城县' , '0539' , '118.342963' , '34.614741' , '371322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '沂南县' , '0539' , '118.455395' , '35.547002' , '371321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '莒南县' , '0539' , '118.838322' , '35.175911' , '371327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '罗庄区' , '0539' , '118.284795' , '34.997204' , '371311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '费县' , '0539' , '117.968869' , '35.269174' , '371325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '兰陵县' , '0539' , '118.049968' , '34.855573' , '371324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '河东区' , '0539' , '118.398296' , '35.085004' , '371312' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371300' ORDER BY id ASC LIMIT 1) m), '临沭县' , '0539' , '118.648379' , '34.917062' , '371329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '淄博市' , '0533' , '118.047648' , '36.814939' , '370300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '高青县' , '0533' , '117.829839' , '37.169581' , '370322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '桓台县' , '0533' , '118.101556' , '36.959773' , '370321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '临淄区' , '0533' , '118.306018' , '36.816657' , '370305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '张店区' , '0533' , '118.053521' , '36.807049' , '370303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '博山区' , '0533' , '117.85823' , '36.497567' , '370304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '沂源县' , '0533' , '118.166161' , '36.186282' , '370323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '淄川区' , '0533' , '117.967696' , '36.647272' , '370302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370300' ORDER BY id ASC LIMIT 1) m), '周村区' , '0533' , '117.851036' , '36.803699' , '370306' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '潍坊市' , '0536' , '119.107078' , '36.70925' , '370700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '奎文区' , '0536' , '119.137357' , '36.709494' , '370705' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '潍城区' , '0536' , '119.103784' , '36.710062' , '370702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '临朐县' , '0536' , '118.539876' , '36.516371' , '370724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '诸城市' , '0536' , '119.403182' , '35.997093' , '370782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '寿光市' , '0536' , '118.736451' , '36.874411' , '370783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '寒亭区' , '0536' , '119.207866' , '36.772103' , '370703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '青州市' , '0536' , '118.484693' , '36.697855' , '370781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '高密市' , '0536' , '119.757033' , '36.37754' , '370785' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '昌邑市' , '0536' , '119.394502' , '36.854937' , '370786' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '坊子区' , '0536' , '119.166326' , '36.654616' , '370704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '安丘市' , '0536' , '119.206886' , '36.427417' , '370784' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370700' ORDER BY id ASC LIMIT 1) m), '昌乐县' , '0536' , '118.839995' , '36.703253' , '370725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '滨州市' , '0543' , '118.016974' , '37.383542' , '371600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '博兴县' , '0543' , '118.123096' , '37.147002' , '371625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '沾化区' , '0543' , '118.129902' , '37.698456' , '371603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '滨城区' , '0543' , '118.020149' , '37.384842' , '371602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '邹平市' , '0543' , '117.736807' , '36.87803' , '371681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '无棣县' , '0543' , '117.616325' , '37.740848' , '371623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '阳信县' , '0543' , '117.581326' , '37.640492' , '371622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371600' ORDER BY id ASC LIMIT 1) m), '惠民县' , '0543' , '117.508941' , '37.483876' , '371621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '日照市' , '0633' , '119.461208' , '35.428588' , '371100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371100' ORDER BY id ASC LIMIT 1) m), '五莲县' , '0633' , '119.206745' , '35.751936' , '371121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371100' ORDER BY id ASC LIMIT 1) m), '东港区' , '0633' , '119.457703' , '35.426152' , '371102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371100' ORDER BY id ASC LIMIT 1) m), '莒县' , '0633' , '118.832859' , '35.588115' , '371122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371100' ORDER BY id ASC LIMIT 1) m), '岚山区' , '0633' , '119.315844' , '35.119794' , '371103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '东营市' , '0546' , '118.66471' , '37.434564' , '370500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370500' ORDER BY id ASC LIMIT 1) m), '利津县' , '0546' , '118.248854' , '37.493365' , '370522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370500' ORDER BY id ASC LIMIT 1) m), '广饶县' , '0546' , '118.407522' , '37.05161' , '370523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370500' ORDER BY id ASC LIMIT 1) m), '东营区' , '0546' , '118.507543' , '37.461567' , '370502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370500' ORDER BY id ASC LIMIT 1) m), '河口区' , '0546' , '118.529613' , '37.886015' , '370503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370500' ORDER BY id ASC LIMIT 1) m), '垦利区' , '0546' , '118.551314' , '37.588679' , '370505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '枣庄市' , '0632' , '117.557964' , '34.856424' , '370400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '市中区' , '0632' , '117.557281' , '34.856651' , '370402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '薛城区' , '0632' , '117.265293' , '34.79789' , '370403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '峄城区' , '0632' , '117.586316' , '34.767713' , '370404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '山亭区' , '0632' , '117.458968' , '35.096077' , '370406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '滕州市' , '0632' , '117.162098' , '35.088498' , '370481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370400' ORDER BY id ASC LIMIT 1) m), '台儿庄区' , '0632' , '117.734747' , '34.564815' , '370405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '菏泽市' , '0530' , '115.469381' , '35.246531' , '371700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '鄄城县' , '0530' , '115.51434' , '35.560257' , '371726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '定陶区' , '0530' , '115.569601' , '35.072701' , '371703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '郓城县' , '0530' , '115.93885' , '35.594773' , '371725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '巨野县' , '0530' , '116.089341' , '35.390999' , '371724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '成武县' , '0530' , '115.897349' , '34.947366' , '371723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '曹县' , '0530' , '115.549482' , '34.823253' , '371721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '单县' , '0530' , '116.08262' , '34.790851' , '371722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '牡丹区' , '0530' , '115.470946' , '35.24311' , '371702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371700' ORDER BY id ASC LIMIT 1) m), '东明县' , '0530' , '115.098412' , '35.289637' , '371728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '济南市' , '0531' , '117.000923' , '36.675807' , '370100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '章丘区' , '0531' , '117.54069' , '36.71209' , '370114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '济阳区' , '0531' , '117.176035' , '36.976771' , '370115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '平阴县' , '0531' , '116.455054' , '36.286923' , '370124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '莱芜区' , '0531' , '117.675808' , '36.214395' , '370116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '商河县' , '0531' , '117.156369' , '37.310544' , '370126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '钢城区' , '0531' , '117.82033' , '36.058038' , '370117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '长清区' , '0531' , '116.74588' , '36.561049' , '370113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '天桥区' , '0531' , '116.996086' , '36.693374' , '370105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '历城区' , '0531' , '117.063744' , '36.681744' , '370112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '历下区' , '0531' , '117.03862' , '36.664169' , '370102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '市中区' , '0531' , '116.99898' , '36.657354' , '370103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370100' ORDER BY id ASC LIMIT 1) m), '槐荫区' , '0531' , '116.947921' , '36.668205' , '370104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '泰安市' , '0538' , '117.129063' , '36.194968' , '370900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '新泰市' , '0538' , '117.766092' , '35.910387' , '370982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '东平县' , '0538' , '116.461052' , '35.930467' , '370923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '泰山区' , '0538' , '117.129984' , '36.189313' , '370902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '岱岳区' , '0538' , '117.04353' , '36.1841' , '370911' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '肥城市' , '0538' , '116.763703' , '36.1856' , '370983' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370900' ORDER BY id ASC LIMIT 1) m), '宁阳县' , '0538' , '116.799297' , '35.76754' , '370921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '德州市' , '0534' , '116.307428' , '37.453968' , '371400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '乐陵市' , '0534' , '117.216657' , '37.729115' , '371481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '宁津县' , '0534' , '116.79372' , '37.649619' , '371422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '德城区' , '0534' , '116.307076' , '37.453923' , '371402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '武城县' , '0534' , '116.078627' , '37.209527' , '371428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '庆云县' , '0534' , '117.390507' , '37.777724' , '371423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '齐河县' , '0534' , '116.758394' , '36.795497' , '371425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '陵城区' , '0534' , '116.574929' , '37.332848' , '371403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '平原县' , '0534' , '116.433904' , '37.164465' , '371426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '夏津县' , '0534' , '116.003816' , '36.950501' , '371427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '临邑县' , '0534' , '116.867028' , '37.192044' , '371424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '371400' ORDER BY id ASC LIMIT 1) m), '禹城市' , '0534' , '116.642554' , '36.934485' , '371482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370000' ORDER BY id ASC LIMIT 1) m), '济宁市' , '0537' , '116.587245' , '35.415393' , '370800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '邹城市' , '0537' , '116.96673' , '35.405259' , '370883' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '曲阜市' , '0537' , '116.991885' , '35.592788' , '370881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '汶上县' , '0537' , '116.487146' , '35.721746' , '370830' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '泗水县' , '0537' , '117.273605' , '35.653216' , '370831' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '嘉祥县' , '0537' , '116.342885' , '35.398098' , '370829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '梁山县' , '0537' , '116.08963' , '35.801843' , '370832' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '金乡县' , '0537' , '116.310364' , '35.06977' , '370828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '兖州区' , '0537' , '116.828996' , '35.556445' , '370812' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '鱼台县' , '0537' , '116.650023' , '34.997706' , '370827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '任城区' , '0537' , '116.595261' , '35.414828' , '370811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '370800' ORDER BY id ASC LIMIT 1) m), '微山县' , '0537' , '117.12861' , '34.809525' , '370826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '陕西省' , '' , '108.948024' , '34.263161' , '610000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '汉中市' , '0916' , '107.028621' , '33.077668' , '610700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '洋县' , '0916' , '107.549962' , '33.223283' , '610723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '留坝县' , '0916' , '106.924377' , '33.61334' , '610729' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '佛坪县' , '0916' , '107.988582' , '33.520745' , '610730' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '宁强县' , '0916' , '106.25739' , '32.830806' , '610726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '略阳县' , '0916' , '106.153899' , '33.329638' , '610727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '西乡县' , '0916' , '107.765858' , '32.987961' , '610724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '勉县' , '0916' , '106.680175' , '33.155618' , '610725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '城固县' , '0916' , '107.329887' , '33.153098' , '610722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '汉台区' , '0916' , '107.028233' , '33.077674' , '610702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '南郑区' , '0916' , '106.942393' , '33.003341' , '610703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610700' ORDER BY id ASC LIMIT 1) m), '镇巴县' , '0916' , '107.89531' , '32.535854' , '610728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '榆林市' , '0912' , '109.741193' , '38.290162' , '610800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '神木市' , '0912' , '110.497005' , '38.835641' , '610881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '横山区' , '0912' , '109.292596' , '37.964048' , '610803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '府谷县' , '0912' , '111.069645' , '39.029243' , '610822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '米脂县' , '0912' , '110.178683' , '37.759081' , '610827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '榆阳区' , '0912' , '109.74791' , '38.299267' , '610802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '佳县' , '0912' , '110.493367' , '38.021597' , '610828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '吴堡县' , '0912' , '110.739315' , '37.451925' , '610829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '子洲县' , '0912' , '110.03457' , '37.611573' , '610831' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '绥德县' , '0912' , '110.265377' , '37.507701' , '610826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '靖边县' , '0912' , '108.80567' , '37.596084' , '610824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '清涧县' , '0912' , '110.12146' , '37.087702' , '610830' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610800' ORDER BY id ASC LIMIT 1) m), '定边县' , '0912' , '107.601284' , '37.59523' , '610825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '铜川市' , '0919' , '108.979608' , '34.916582' , '610200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610200' ORDER BY id ASC LIMIT 1) m), '宜君县' , '0919' , '109.118278' , '35.398766' , '610222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610200' ORDER BY id ASC LIMIT 1) m), '王益区' , '0919' , '109.075862' , '35.069098' , '610202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610200' ORDER BY id ASC LIMIT 1) m), '印台区' , '0919' , '109.100814' , '35.111927' , '610203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610200' ORDER BY id ASC LIMIT 1) m), '耀州区' , '0919' , '108.962538' , '34.910206' , '610204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '商洛市' , '0914' , '109.939776' , '33.868319' , '611000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '丹凤县' , '0914' , '110.33191' , '33.694711' , '611022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '商南县' , '0914' , '110.885437' , '33.526367' , '611023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '镇安县' , '0914' , '109.151075' , '33.423981' , '611025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '洛南县' , '0914' , '110.145716' , '34.088502' , '611021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '山阳县' , '0914' , '109.880435' , '33.530411' , '611024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '商州区' , '0914' , '109.937685' , '33.869208' , '611002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '611000' ORDER BY id ASC LIMIT 1) m), '柞水县' , '0914' , '109.111249' , '33.682773' , '611026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '延安市' , '0911' , '109.49081' , '36.596537' , '610600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '志丹县' , '0911' , '108.768898' , '36.823031' , '610625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '安塞区' , '0911' , '109.325341' , '36.86441' , '610603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '延川县' , '0911' , '110.190314' , '36.882066' , '610622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '吴起县' , '0911' , '108.176976' , '36.924852' , '610626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '子长市' , '0911' , '109.675968' , '37.14207' , '610681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '富县' , '0911' , '109.384136' , '35.996495' , '610628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '宝塔区' , '0911' , '109.49069' , '36.596291' , '610602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '延长县' , '0911' , '110.012961' , '36.578306' , '610621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '黄陵县' , '0911' , '109.262469' , '35.580165' , '610632' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '洛川县' , '0911' , '109.435712' , '35.762133' , '610629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '宜川县' , '0911' , '110.175537' , '36.050391' , '610630' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '甘泉县' , '0911' , '109.34961' , '36.277729' , '610627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610600' ORDER BY id ASC LIMIT 1) m), '黄龙县' , '0911' , '109.83502' , '35.583276' , '610631' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '安康市' , '0915' , '109.029273' , '32.6903' , '610900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '石泉县' , '0915' , '108.250512' , '33.038512' , '610922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '镇坪县' , '0915' , '109.526437' , '31.883395' , '610927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '汉阴县' , '0915' , '108.510946' , '32.891121' , '610921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '平利县' , '0915' , '109.361865' , '32.387933' , '610926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '岚皋县' , '0915' , '108.900663' , '32.31069' , '610925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '紫阳县' , '0915' , '108.537788' , '32.520176' , '610924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '宁陕县' , '0915' , '108.313714' , '33.312184' , '610923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '白河县' , '0915' , '110.114186' , '32.809484' , '610929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '旬阳市' , '0915' , '109.368149' , '32.833567' , '610928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610900' ORDER BY id ASC LIMIT 1) m), '汉滨区' , '0915' , '109.029098' , '32.690817' , '610902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '西安市' , '029' , '108.948024' , '34.263161' , '610100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '临潼区' , '029' , '109.213986' , '34.372065' , '610115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '高陵区' , '029' , '109.088896' , '34.535065' , '610117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '鄠邑区' , '029' , '108.607385' , '34.108668' , '610118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '莲湖区' , '029' , '108.933194' , '34.2656' , '610104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '新城区' , '029' , '108.959903' , '34.26927' , '610102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '灞桥区' , '029' , '109.067261' , '34.267453' , '610111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '阎良区' , '029' , '109.22802' , '34.662141' , '610114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '未央区' , '029' , '108.946022' , '34.30823' , '610112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '长安区' , '029' , '108.941579' , '34.157097' , '610116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '周至县' , '029' , '108.216465' , '34.161532' , '610124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '蓝田县' , '029' , '109.317634' , '34.156189' , '610122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '碑林区' , '029' , '108.946994' , '34.251061' , '610103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610100' ORDER BY id ASC LIMIT 1) m), '雁塔区' , '029' , '108.926593' , '34.213389' , '610113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '宝鸡市' , '0917' , '107.14487' , '34.369315' , '610300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '陇县' , '0917' , '106.857066' , '34.893262' , '610327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '千阳县' , '0917' , '107.132987' , '34.642584' , '610328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '麟游县' , '0917' , '107.796608' , '34.677714' , '610329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '岐山县' , '0917' , '107.624464' , '34.44296' , '610323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '凤县' , '0917' , '106.525212' , '33.912464' , '610330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '渭滨区' , '0917' , '107.144467' , '34.371008' , '610302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '金台区' , '0917' , '107.149943' , '34.375192' , '610303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '太白县' , '0917' , '107.316533' , '34.059215' , '610331' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '凤翔区' , '0917' , '107.400577' , '34.521668' , '610322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '陈仓区' , '0917' , '107.383645' , '34.352747' , '610304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '眉县' , '0917' , '107.752371' , '34.272137' , '610326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610300' ORDER BY id ASC LIMIT 1) m), '扶风县' , '0917' , '107.891419' , '34.375497' , '610324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '咸阳市' , '0910' , '108.705117' , '34.333439' , '610400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '永寿县' , '0910' , '108.143129' , '34.692619' , '610426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '乾县' , '0910' , '108.247406' , '34.527261' , '610424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '渭城区' , '0910' , '108.730957' , '34.336847' , '610404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '泾阳县' , '0910' , '108.83784' , '34.528493' , '610423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '长武县' , '0910' , '107.795835' , '35.206122' , '610428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '三原县' , '0910' , '108.943481' , '34.613996' , '610422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '礼泉县' , '0910' , '108.428317' , '34.482583' , '610425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '淳化县' , '0910' , '108.581173' , '34.79797' , '610430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '秦都区' , '0910' , '108.698636' , '34.329801' , '610402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '杨陵区' , '0910' , '108.086348' , '34.27135' , '610403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '兴平市' , '0910' , '108.488493' , '34.297134' , '610481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '武功县' , '0910' , '108.212857' , '34.259732' , '610431' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '旬邑县' , '0910' , '108.337231' , '35.112234' , '610429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610400' ORDER BY id ASC LIMIT 1) m), '彬州市' , '0910' , '108.083674' , '35.034233' , '610482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610000' ORDER BY id ASC LIMIT 1) m), '渭南市' , '0913' , '109.502882' , '34.499381' , '610500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '韩城市' , '0913' , '110.452391' , '35.475238' , '610581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '白水县' , '0913' , '109.594309' , '35.177291' , '610527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '潼关县' , '0913' , '110.24726' , '34.544515' , '610522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '澄城县' , '0913' , '109.937609' , '35.184' , '610525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '蒲城县' , '0913' , '109.589653' , '34.956034' , '610526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '合阳县' , '0913' , '110.147979' , '35.237098' , '610524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '富平县' , '0913' , '109.187174' , '34.746679' , '610528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '华州区' , '0913' , '109.76141' , '34.511958' , '610503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '华阴市' , '0913' , '110.08952' , '34.565359' , '610582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '大荔县' , '0913' , '109.943123' , '34.795011' , '610523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '610500' ORDER BY id ASC LIMIT 1) m), '临渭区' , '0913' , '109.503299' , '34.501271' , '610502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '西藏自治区' , '' , '91.132212' , '29.660361' , '540000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '昌都市' , '0895' , '97.178452' , '31.136875' , '540300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '丁青县' , '0895' , '95.597748' , '31.410681' , '540324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '江达县' , '0895' , '98.218351' , '31.499534' , '540321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '卡若区' , '0895' , '97.178255' , '31.137035' , '540302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '类乌齐县' , '0895' , '96.601259' , '31.213048' , '540323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '边坝县' , '0895' , '94.707504' , '30.933849' , '540330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '贡觉县' , '0895' , '98.271191' , '30.859206' , '540322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '察雅县' , '0895' , '97.565701' , '30.653038' , '540325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '八宿县' , '0895' , '96.917893' , '30.053408' , '540326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '洛隆县' , '0895' , '95.823418' , '30.741947' , '540329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '左贡县' , '0895' , '97.840532' , '29.671335' , '540327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540300' ORDER BY id ASC LIMIT 1) m), '芒康县' , '0895' , '98.596444' , '29.686615' , '540328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '那曲市' , '0896' , '92.060214' , '31.476004' , '540600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '安多县' , '0896' , '91.681879' , '32.260299' , '540624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '班戈县' , '0896' , '90.011822' , '31.394578' , '540627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '申扎县' , '0896' , '88.709777' , '30.929056' , '540625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '聂荣县' , '0896' , '92.303659' , '32.107855' , '540623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '巴青县' , '0896' , '94.054049' , '31.918691' , '540628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '色尼区' , '0896' , '92.061862' , '31.475756' , '540602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '比如县' , '0896' , '93.68044' , '31.479917' , '540622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '索县' , '0896' , '93.784964' , '31.886173' , '540626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '嘉黎县' , '0896' , '93.232907' , '30.640846' , '540621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '尼玛县' , '0896' , '87.236646' , '31.784979' , '540629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540600' ORDER BY id ASC LIMIT 1) m), '双湖县' , '0896' , '88.838578' , '33.18698' , '540630' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '阿里地区' , '0897' , '80.105498' , '32.503187' , '542500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '改则县' , '0897' , '84.062384' , '32.302076' , '542526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '札达县' , '0897' , '79.803191' , '31.478587' , '542522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '措勤县' , '0897' , '85.159254' , '31.016774' , '542527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '普兰县' , '0897' , '81.177588' , '30.291896' , '542521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '日土县' , '0897' , '79.731937' , '33.382454' , '542524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '噶尔县' , '0897' , '80.105005' , '32.503373' , '542523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '542500' ORDER BY id ASC LIMIT 1) m), '革吉县' , '0897' , '81.142896' , '32.389192' , '542525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '拉萨市' , '0891' , '91.132212' , '29.660361' , '540100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '当雄县' , '0891' , '91.103551' , '30.474819' , '540122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '林周县' , '0891' , '91.261842' , '29.895754' , '540121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '尼木县' , '0891' , '90.165545' , '29.431346' , '540123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '墨竹工卡县' , '0891' , '91.731158' , '29.834657' , '540127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '堆龙德庆区' , '0891' , '91.002823' , '29.647347' , '540103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '达孜区' , '0891' , '91.350976' , '29.670314' , '540104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '曲水县' , '0891' , '90.738051' , '29.349895' , '540124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540100' ORDER BY id ASC LIMIT 1) m), '城关区' , '0891' , '91.132911' , '29.659472' , '540102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '林芝市' , '0894' , '94.362348' , '29.654693' , '540400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '波密县' , '0894' , '95.768151' , '29.858771' , '540424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '工布江达县' , '0894' , '93.246515' , '29.88447' , '540421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '墨脱县' , '0894' , '95.332245' , '29.32573' , '540423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '巴宜区' , '0894' , '94.360987' , '29.653732' , '540402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '察隅县' , '0894' , '97.465002' , '28.660244' , '540425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '米林县' , '0894' , '94.213679' , '29.213811' , '540422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540400' ORDER BY id ASC LIMIT 1) m), '朗县' , '0894' , '93.073429' , '29.0446' , '540426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '山南市' , '0893' , '91.766529' , '29.236023' , '540500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '加查县' , '0893' , '92.591043' , '29.140921' , '540528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '乃东区' , '0893' , '91.76525' , '29.236106' , '540502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '扎囊县' , '0893' , '91.338' , '29.246476' , '540521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '桑日县' , '0893' , '92.015732' , '29.259774' , '540523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '琼结县' , '0893' , '91.683753' , '29.025242' , '540524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '曲松县' , '0893' , '92.201066' , '29.063656' , '540525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '浪卡子县' , '0893' , '90.398747' , '28.96836' , '540531' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '贡嘎县' , '0893' , '90.985271' , '29.289078' , '540522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '措美县' , '0893' , '91.432347' , '28.437353' , '540526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '错那县' , '0893' , '91.960132' , '27.991707' , '540530' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '洛扎县' , '0893' , '90.858243' , '28.385765' , '540527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540500' ORDER BY id ASC LIMIT 1) m), '隆子县' , '0893' , '92.463309' , '28.408548' , '540529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540000' ORDER BY id ASC LIMIT 1) m), '日喀则市' , '0892' , '88.885148' , '29.267519' , '540200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '仲巴县' , '0892' , '84.032826' , '29.768336' , '540232' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '昂仁县' , '0892' , '87.23578' , '29.294758' , '540226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '谢通门县' , '0892' , '88.260517' , '29.431597' , '540227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '萨嘎县' , '0892' , '85.234622' , '29.328194' , '540236' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '南木林县' , '0892' , '89.099434' , '29.680459' , '540221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '桑珠孜区' , '0892' , '88.88667' , '29.267003' , '540202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '拉孜县' , '0892' , '87.63743' , '29.085136' , '540225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '江孜县' , '0892' , '89.605044' , '28.908845' , '540222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '白朗县' , '0892' , '89.263618' , '29.106627' , '540228' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '萨迦县' , '0892' , '88.023007' , '28.901077' , '540224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '吉隆县' , '0892' , '85.298349' , '28.852416' , '540234' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '仁布县' , '0892' , '89.843207' , '29.230299' , '540229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '康马县' , '0892' , '89.683406' , '28.554719' , '540230' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '聂拉木县' , '0892' , '85.981953' , '28.15595' , '540235' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '定日县' , '0892' , '87.123887' , '28.656667' , '540223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '亚东县' , '0892' , '88.906806' , '27.482772' , '540233' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '定结县' , '0892' , '87.767723' , '28.36409' , '540231' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '540200' ORDER BY id ASC LIMIT 1) m), '岗巴县' , '0892' , '88.518903' , '28.274371' , '540237' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '青海省' , '' , '101.778916' , '36.623178' , '630000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '海南藏族自治州' , '0974' , '100.619542' , '36.280353' , '632500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632500' ORDER BY id ASC LIMIT 1) m), '共和县' , '0974' , '100.619597' , '36.280286' , '632521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632500' ORDER BY id ASC LIMIT 1) m), '贵德县' , '0974' , '101.431856' , '36.040456' , '632523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632500' ORDER BY id ASC LIMIT 1) m), '同德县' , '0974' , '100.579465' , '35.254492' , '632522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632500' ORDER BY id ASC LIMIT 1) m), '贵南县' , '0974' , '100.74792' , '35.587085' , '632525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632500' ORDER BY id ASC LIMIT 1) m), '兴海县' , '0974' , '99.986963' , '35.58909' , '632524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '海东市' , '0972' , '102.10327' , '36.502916' , '630200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '化隆回族自治县' , '0972' , '102.262329' , '36.098322' , '630224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '乐都区' , '0972' , '102.402431' , '36.480291' , '630202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '民和回族土族自治县' , '0972' , '102.804209' , '36.329451' , '630222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '循化撒拉族自治县' , '0972' , '102.486534' , '35.847247' , '630225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '平安区' , '0972' , '102.104295' , '36.502714' , '630203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630200' ORDER BY id ASC LIMIT 1) m), '互助土族自治县' , '0972' , '101.956734' , '36.83994' , '630223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '海西蒙古族藏族自治州' , '0977' , '97.370785' , '37.374663' , '632800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '天峻县' , '0977' , '99.02078' , '37.29906' , '632823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '德令哈市' , '0977' , '97.370143' , '37.374555' , '632802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '格尔木市' , '0977' , '94.905777' , '36.401541' , '632801' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '都兰县' , '0977' , '98.089161' , '36.298553' , '632822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '海西蒙古族藏族自治州直辖' , '0977' , '95.357233' , '37.853631' , '632825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '乌兰县' , '0977' , '98.479852' , '36.930389' , '632821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632800' ORDER BY id ASC LIMIT 1) m), '茫崖市' , '0977' , '90.855955' , '38.247117' , '632803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '果洛藏族自治州' , '0975' , '100.242143' , '34.4736' , '632600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '玛沁县' , '0975' , '100.243531' , '34.473386' , '632621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '甘德县' , '0975' , '99.902589' , '33.966987' , '632623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '达日县' , '0975' , '99.651715' , '33.753259' , '632624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '久治县' , '0975' , '101.484884' , '33.430217' , '632625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '班玛县' , '0975' , '100.737955' , '32.931589' , '632622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632600' ORDER BY id ASC LIMIT 1) m), '玛多县' , '0975' , '98.211343' , '34.91528' , '632626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '黄南藏族自治州' , '0973' , '102.019988' , '35.517744' , '632300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632300' ORDER BY id ASC LIMIT 1) m), '同仁市' , '0973' , '102.017604' , '35.516337' , '632301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632300' ORDER BY id ASC LIMIT 1) m), '尖扎县' , '0973' , '102.031953' , '35.938205' , '632322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632300' ORDER BY id ASC LIMIT 1) m), '河南蒙古族自治县' , '0973' , '101.611877' , '34.734522' , '632324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632300' ORDER BY id ASC LIMIT 1) m), '泽库县' , '0973' , '101.469343' , '35.036842' , '632323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '玉树藏族自治州' , '0976' , '97.008522' , '33.004049' , '632700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '治多县' , '0976' , '95.616843' , '33.852322' , '632724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '曲麻莱县' , '0976' , '95.800674' , '34.12654' , '632726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '称多县' , '0976' , '97.110893' , '33.367884' , '632723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '玉树市' , '0976' , '97.008762' , '33.00393' , '632701' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '囊谦县' , '0976' , '96.479797' , '32.203206' , '632725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632700' ORDER BY id ASC LIMIT 1) m), '杂多县' , '0976' , '95.293423' , '32.891886' , '632722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '西宁市' , '0971' , '101.778916' , '36.623178' , '630100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '湟源县' , '0971' , '101.263435' , '36.684818' , '630123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '大通回族土族自治县' , '0971' , '101.684183' , '36.931343' , '630121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '城东区' , '0971' , '101.796095' , '36.616043' , '630102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '湟中区' , '0971' , '101.569475' , '36.500419' , '630106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '城中区' , '0971' , '101.784554' , '36.621181' , '630103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '城西区' , '0971' , '101.763649' , '36.628323' , '630104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630100' ORDER BY id ASC LIMIT 1) m), '城北区' , '0971' , '101.761297' , '36.648448' , '630105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '630000' ORDER BY id ASC LIMIT 1) m), '海北藏族自治州' , '0970' , '100.901059' , '36.959435' , '632200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632200' ORDER BY id ASC LIMIT 1) m), '海晏县' , '0970' , '100.90049' , '36.959542' , '632223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632200' ORDER BY id ASC LIMIT 1) m), '门源回族自治县' , '0970' , '101.618461' , '37.376627' , '632221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632200' ORDER BY id ASC LIMIT 1) m), '刚察县' , '0970' , '100.138417' , '37.326263' , '632224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '632200' ORDER BY id ASC LIMIT 1) m), '祁连县' , '0970' , '100.249778' , '38.175409' , '632222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '江苏省' , '' , '118.767413' , '32.041544' , '320000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '南通市' , '0513' , '120.864608' , '32.016212' , '320600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '海安市' , '0513' , '120.465995' , '32.540288' , '320685' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '海门区' , '0513' , '121.176609' , '31.893528' , '320614' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '如东县' , '0513' , '121.186088' , '32.311832' , '320623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '启东市' , '0513' , '121.659724' , '31.810158' , '320681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '通州区' , '0513' , '121.073171' , '32.084287' , '320612' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '崇川区' , '0513' , '120.86635' , '32.015278' , '320613' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320600' ORDER BY id ASC LIMIT 1) m), '如皋市' , '0513' , '120.566324' , '32.391591' , '320682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '连云港市' , '0518' , '119.178821' , '34.600018' , '320700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '东海县' , '0518' , '118.766489' , '34.522859' , '320722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '连云区' , '0518' , '119.366487' , '34.739529' , '320703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '灌南县' , '0518' , '119.352331' , '34.092553' , '320724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '海州区' , '0518' , '119.179793' , '34.601584' , '320706' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '赣榆区' , '0518' , '119.128774' , '34.839154' , '320707' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320700' ORDER BY id ASC LIMIT 1) m), '灌云县' , '0518' , '119.255741' , '34.298436' , '320723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '淮安市' , '0517' , '119.021265' , '33.597506' , '320800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '金湖县' , '0517' , '119.016936' , '33.018162' , '320831' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '淮阴区' , '0517' , '119.020817' , '33.622452' , '320804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '盱眙县' , '0517' , '118.493823' , '33.00439' , '320830' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '洪泽区' , '0517' , '118.867875' , '33.294975' , '320813' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '涟水县' , '0517' , '119.266078' , '33.771308' , '320826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '清江浦区' , '0517' , '119.019454' , '33.603234' , '320812' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320800' ORDER BY id ASC LIMIT 1) m), '淮安区' , '0517' , '119.14634' , '33.507499' , '320803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '盐城市' , '0515' , '120.139998' , '33.377631' , '320900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '滨海县' , '0515' , '119.828434' , '33.989888' , '320922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '射阳县' , '0515' , '120.257444' , '33.773779' , '320924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '建湖县' , '0515' , '119.793105' , '33.472621' , '320925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '阜宁县' , '0515' , '119.805338' , '33.78573' , '320923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '盐都区' , '0515' , '120.139753' , '33.341288' , '320903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '东台市' , '0515' , '120.314101' , '32.853174' , '320981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '响水县' , '0515' , '119.579573' , '34.19996' , '320921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '大丰区' , '0515' , '120.470324' , '33.199531' , '320904' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320900' ORDER BY id ASC LIMIT 1) m), '亭湖区' , '0515' , '120.136078' , '33.383912' , '320902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '扬州市' , '0514' , '119.421003' , '32.393159' , '321000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '广陵区' , '0514' , '119.442267' , '32.392154' , '321002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '宝应县' , '0514' , '119.321284' , '33.23694' , '321023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '江都区' , '0514' , '119.567481' , '32.426564' , '321012' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '仪征市' , '0514' , '119.182443' , '32.271965' , '321081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '高邮市' , '0514' , '119.443842' , '32.785164' , '321084' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321000' ORDER BY id ASC LIMIT 1) m), '邗江区' , '0514' , '119.397777' , '32.377899' , '321003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '宿迁市' , '0527' , '118.275162' , '33.963008' , '321300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321300' ORDER BY id ASC LIMIT 1) m), '泗阳县' , '0527' , '118.681284' , '33.711433' , '321323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321300' ORDER BY id ASC LIMIT 1) m), '泗洪县' , '0527' , '118.211824' , '33.456538' , '321324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321300' ORDER BY id ASC LIMIT 1) m), '宿城区' , '0527' , '118.278984' , '33.937726' , '321302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321300' ORDER BY id ASC LIMIT 1) m), '宿豫区' , '0527' , '118.330012' , '33.941071' , '321311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321300' ORDER BY id ASC LIMIT 1) m), '沭阳县' , '0527' , '118.775889' , '34.129097' , '321322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '镇江市' , '0511' , '119.452753' , '32.204402' , '321100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '润州区' , '0511' , '119.414877' , '32.213501' , '321111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '扬中市' , '0511' , '119.828054' , '32.237266' , '321182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '丹徒区' , '0511' , '119.433883' , '32.128972' , '321112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '京口区' , '0511' , '119.454571' , '32.206191' , '321102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '丹阳市' , '0511' , '119.581911' , '31.991459' , '321181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321100' ORDER BY id ASC LIMIT 1) m), '句容市' , '0511' , '119.167135' , '31.947355' , '321183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '南京市' , '025' , '118.767413' , '32.041544' , '320100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '浦口区' , '025' , '118.625307' , '32.05839' , '320111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '雨花台区' , '025' , '118.77207' , '31.995946' , '320114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '江宁区' , '025' , '118.850621' , '31.953418' , '320115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '高淳区' , '025' , '118.87589' , '31.327132' , '320118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '溧水区' , '025' , '119.028732' , '31.653061' , '320117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '六合区' , '025' , '118.85065' , '32.340655' , '320116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '建邺区' , '025' , '118.732688' , '32.004538' , '320105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '秦淮区' , '025' , '118.786088' , '32.033818' , '320104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '玄武区' , '025' , '118.792199' , '32.050678' , '320102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '鼓楼区' , '025' , '118.769739' , '32.066966' , '320106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320100' ORDER BY id ASC LIMIT 1) m), '栖霞区' , '025' , '118.808702' , '32.102147' , '320113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '泰州市' , '0523' , '119.915176' , '32.484882' , '321200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '兴化市' , '0523' , '119.840162' , '32.938065' , '321281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '姜堰区' , '0523' , '120.148208' , '32.508483' , '321204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '海陵区' , '0523' , '119.920187' , '32.488406' , '321202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '靖江市' , '0523' , '120.26825' , '32.018168' , '321282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '高港区' , '0523' , '119.88166' , '32.315701' , '321203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '321200' ORDER BY id ASC LIMIT 1) m), '泰兴市' , '0523' , '120.020228' , '32.168784' , '321283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '无锡市' , '0510' , '120.301663' , '31.574729' , '320200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '梁溪区' , '0510' , '120.296595' , '31.575706' , '320213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '新吴区' , '0510' , '120.352782' , '31.550966' , '320214' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '锡山区' , '0510' , '120.357298' , '31.585559' , '320205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '滨湖区' , '0510' , '120.266053' , '31.550228' , '320211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '宜兴市' , '0510' , '119.820538' , '31.364384' , '320282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '惠山区' , '0510' , '120.303543' , '31.681019' , '320206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320200' ORDER BY id ASC LIMIT 1) m), '江阴市' , '0510' , '120.275891' , '31.910984' , '320281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '常州市' , '0519' , '119.946973' , '31.772752' , '320400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '溧阳市' , '0519' , '119.487816' , '31.427081' , '320481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '新北区' , '0519' , '119.974654' , '31.824664' , '320411' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '钟楼区' , '0519' , '119.948388' , '31.78096' , '320404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '金坛区' , '0519' , '119.573395' , '31.744399' , '320413' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '天宁区' , '0519' , '119.963783' , '31.779632' , '320402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320400' ORDER BY id ASC LIMIT 1) m), '武进区' , '0519' , '119.958773' , '31.718566' , '320412' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '苏州市' , '0512' , '120.619585' , '31.299379' , '320500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '太仓市' , '0512' , '121.112275' , '31.452568' , '320585' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '吴江区' , '0512' , '120.641601' , '31.160404' , '320509' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '常熟市' , '0512' , '120.74852' , '31.658156' , '320581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '相城区' , '0512' , '120.618956' , '31.396684' , '320507' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '昆山市' , '0512' , '120.958137' , '31.381925' , '320583' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '张家港市' , '0512' , '120.543441' , '31.865553' , '320582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '吴中区' , '0512' , '120.624621' , '31.270839' , '320506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '虎丘区' , '0512' , '120.566833' , '31.294845' , '320505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320500' ORDER BY id ASC LIMIT 1) m), '姑苏区' , '0512' , '120.622249' , '31.311414' , '320508' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320000' ORDER BY id ASC LIMIT 1) m), '徐州市' , '0516' , '117.184811' , '34.261792' , '320300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '泉山区' , '0516' , '117.182225' , '34.262249' , '320311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '铜山区' , '0516' , '117.183894' , '34.19288' , '320312' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '丰县' , '0516' , '116.592888' , '34.696946' , '320321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '鼓楼区' , '0516' , '117.192941' , '34.269397' , '320302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '新沂市' , '0516' , '118.345828' , '34.368779' , '320381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '云龙区' , '0516' , '117.194589' , '34.254805' , '320303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '贾汪区' , '0516' , '117.450212' , '34.441642' , '320305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '睢宁县' , '0516' , '117.95066' , '33.899222' , '320324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '邳州市' , '0516' , '117.963923' , '34.314708' , '320382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '320300' ORDER BY id ASC LIMIT 1) m), '沛县' , '0516' , '116.937182' , '34.729044' , '320322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '安徽省' , '' , '117.283042' , '31.86119' , '340000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '阜阳市' , '1558' , '115.819729' , '32.896969' , '341200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '太和县' , '1558' , '115.627243' , '33.16229' , '341222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '临泉县' , '1558' , '115.261688' , '33.062698' , '341221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '颍泉区' , '1558' , '115.804525' , '32.924797' , '341204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '颍州区' , '1558' , '115.813914' , '32.891238' , '341202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '阜南县' , '1558' , '115.590534' , '32.638102' , '341225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '颍东区' , '1558' , '115.858747' , '32.908861' , '341203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '颍上县' , '1558' , '116.259122' , '32.637065' , '341226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341200' ORDER BY id ASC LIMIT 1) m), '界首市' , '1558' , '115.362117' , '33.26153' , '341282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '铜陵市' , '0562' , '117.816576' , '30.929935' , '340700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340700' ORDER BY id ASC LIMIT 1) m), '郊区' , '0562' , '117.80707' , '30.908927' , '340711' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340700' ORDER BY id ASC LIMIT 1) m), '铜官区' , '0562' , '117.816167' , '30.927613' , '340705' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340700' ORDER BY id ASC LIMIT 1) m), '义安区' , '0562' , '117.792288' , '30.952338' , '340706' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340700' ORDER BY id ASC LIMIT 1) m), '枞阳县' , '0562' , '117.222027' , '30.700615' , '340722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '淮北市' , '0561' , '116.794664' , '33.971707' , '340600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340600' ORDER BY id ASC LIMIT 1) m), '杜集区' , '0561' , '116.833925' , '33.991218' , '340602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340600' ORDER BY id ASC LIMIT 1) m), '烈山区' , '0561' , '116.809465' , '33.889529' , '340604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340600' ORDER BY id ASC LIMIT 1) m), '相山区' , '0561' , '116.790775' , '33.970916' , '340603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340600' ORDER BY id ASC LIMIT 1) m), '濉溪县' , '0561' , '116.767435' , '33.916407' , '340621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '马鞍山市' , '0555' , '118.507906' , '31.689362' , '340500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '博望区' , '0555' , '118.843742' , '31.562321' , '340506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '雨山区' , '0555' , '118.493104' , '31.685912' , '340504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '花山区' , '0555' , '118.511308' , '31.69902' , '340503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '和县' , '0555' , '118.362998' , '31.716634' , '340523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '含山县' , '0555' , '118.105545' , '31.727758' , '340522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340500' ORDER BY id ASC LIMIT 1) m), '当涂县' , '0555' , '118.489873' , '31.556167' , '340521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '池州市' , '0566' , '117.489157' , '30.656037' , '341700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341700' ORDER BY id ASC LIMIT 1) m), '贵池区' , '0566' , '117.488342' , '30.657378' , '341702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341700' ORDER BY id ASC LIMIT 1) m), '石台县' , '0566' , '117.482907' , '30.210324' , '341722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341700' ORDER BY id ASC LIMIT 1) m), '青阳县' , '0566' , '117.857395' , '30.63818' , '341723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341700' ORDER BY id ASC LIMIT 1) m), '东至县' , '0566' , '117.021476' , '30.096568' , '341721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '黄山市' , '0559' , '118.317325' , '29.709239' , '341000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '黄山区' , '0559' , '118.136639' , '30.294517' , '341003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '黟县' , '0559' , '117.942911' , '29.923812' , '341023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '祁门县' , '0559' , '117.717237' , '29.853472' , '341024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '徽州区' , '0559' , '118.339743' , '29.825201' , '341004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '屯溪区' , '0559' , '118.317354' , '29.709186' , '341002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '休宁县' , '0559' , '118.188531' , '29.788878' , '341022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341000' ORDER BY id ASC LIMIT 1) m), '歙县' , '0559' , '118.428025' , '29.867748' , '341021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '安庆市' , '0556' , '117.043551' , '30.50883' , '340800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '岳西县' , '0556' , '116.360482' , '30.848502' , '340828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '潜山市' , '0556' , '116.573665' , '30.638222' , '340882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '迎江区' , '0556' , '117.044965' , '30.506375' , '340802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '宜秀区' , '0556' , '117.070003' , '30.541323' , '340811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '太湖县' , '0556' , '116.305225' , '30.451869' , '340825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '桐城市' , '0556' , '116.959656' , '31.050576' , '340881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '望江县' , '0556' , '116.690927' , '30.12491' , '340827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '宿松县' , '0556' , '116.120204' , '30.158327' , '340826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '大观区' , '0556' , '117.034512' , '30.505632' , '340803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340800' ORDER BY id ASC LIMIT 1) m), '怀宁县' , '0556' , '116.828664' , '30.734994' , '340822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '蚌埠市' , '0552' , '117.363228' , '32.939667' , '340300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '五河县' , '0552' , '117.888809' , '33.146202' , '340322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '淮上区' , '0552' , '117.34709' , '32.963147' , '340311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '怀远县' , '0552' , '117.200171' , '32.956934' , '340321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '禹会区' , '0552' , '117.35259' , '32.931933' , '340304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '蚌山区' , '0552' , '117.355789' , '32.938066' , '340303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '龙子湖区' , '0552' , '117.382312' , '32.950452' , '340302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340300' ORDER BY id ASC LIMIT 1) m), '固镇县' , '0552' , '117.315962' , '33.318679' , '340323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '宣城市' , '0563' , '118.757995' , '30.945667' , '341800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '广德市' , '0563' , '119.417521' , '30.893116' , '341882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '旌德县' , '0563' , '118.543081' , '30.288057' , '341825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '宣州区' , '0563' , '118.758412' , '30.946003' , '341802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '郎溪县' , '0563' , '119.185024' , '31.127834' , '341821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '泾县' , '0563' , '118.412397' , '30.685975' , '341823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '宁国市' , '0563' , '118.983407' , '30.626529' , '341881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341800' ORDER BY id ASC LIMIT 1) m), '绩溪县' , '0563' , '118.594705' , '30.065267' , '341824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '滁州市' , '0550' , '118.316264' , '32.303627' , '341100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '明光市' , '0550' , '117.998048' , '32.781206' , '341182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '天长市' , '0550' , '119.011212' , '32.6815' , '341181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '凤阳县' , '0550' , '117.562461' , '32.867146' , '341126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '来安县' , '0550' , '118.433293' , '32.450231' , '341122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '定远县' , '0550' , '117.683713' , '32.527105' , '341125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '南谯区' , '0550' , '118.296955' , '32.329841' , '341103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '琅琊区' , '0550' , '118.316475' , '32.303797' , '341102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341100' ORDER BY id ASC LIMIT 1) m), '全椒县' , '0550' , '118.268576' , '32.09385' , '341124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '宿州市' , '0557' , '116.984084' , '33.633891' , '341300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341300' ORDER BY id ASC LIMIT 1) m), '泗县' , '0557' , '117.885443' , '33.47758' , '341324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341300' ORDER BY id ASC LIMIT 1) m), '埇桥区' , '0557' , '116.983309' , '33.633853' , '341302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341300' ORDER BY id ASC LIMIT 1) m), '萧县' , '0557' , '116.945399' , '34.183266' , '341322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341300' ORDER BY id ASC LIMIT 1) m), '灵璧县' , '0557' , '117.551493' , '33.540629' , '341323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341300' ORDER BY id ASC LIMIT 1) m), '砀山县' , '0557' , '116.351113' , '34.426247' , '341321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '淮南市' , '0554' , '117.018329' , '32.647574' , '340400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '潘集区' , '0554' , '116.816879' , '32.782117' , '340406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '八公山区' , '0554' , '116.841111' , '32.628229' , '340405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '凤台县' , '0554' , '116.722769' , '32.705382' , '340421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '大通区' , '0554' , '117.052927' , '32.632066' , '340402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '谢家集区' , '0554' , '116.865354' , '32.598289' , '340404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '田家庵区' , '0554' , '117.018318' , '32.644342' , '340403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340400' ORDER BY id ASC LIMIT 1) m), '寿县' , '0554' , '116.785349' , '32.577304' , '340422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '芜湖市' , '0553' , '118.376451' , '31.326319' , '340200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '繁昌区' , '0553' , '118.201349' , '31.080896' , '340212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '镜湖区' , '0553' , '118.376343' , '31.32559' , '340202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '无为市' , '0553' , '117.911432' , '31.303075' , '340281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '鸠江区' , '0553' , '118.400174' , '31.362716' , '340207' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '弋江区' , '0553' , '118.377476' , '31.313394' , '340209' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '湾沚区' , '0553' , '118.572301' , '31.145262' , '340210' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340200' ORDER BY id ASC LIMIT 1) m), '南陵县' , '0553' , '118.337104' , '30.919638' , '340223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '亳州市' , '0558' , '115.782939' , '33.869338' , '341600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341600' ORDER BY id ASC LIMIT 1) m), '谯城区' , '0558' , '115.781214' , '33.869284' , '341602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341600' ORDER BY id ASC LIMIT 1) m), '利辛县' , '0558' , '116.207782' , '33.143503' , '341623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341600' ORDER BY id ASC LIMIT 1) m), '蒙城县' , '0558' , '116.560337' , '33.260814' , '341622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341600' ORDER BY id ASC LIMIT 1) m), '涡阳县' , '0558' , '116.211551' , '33.502831' , '341621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '合肥市' , '0551' , '117.283042' , '31.86119' , '340100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '瑶海区' , '0551' , '117.315358' , '31.86961' , '340102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '肥东县' , '0551' , '117.463222' , '31.883992' , '340122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '巢湖市' , '0551' , '117.874155' , '31.600518' , '340181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '包河区' , '0551' , '117.285751' , '31.82956' , '340111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '庐阳区' , '0551' , '117.283776' , '31.869011' , '340103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '长丰县' , '0551' , '117.164699' , '32.478548' , '340121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '蜀山区' , '0551' , '117.262072' , '31.855868' , '340104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '庐江县' , '0551' , '117.289844' , '31.251488' , '340124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340100' ORDER BY id ASC LIMIT 1) m), '肥西县' , '0551' , '117.166118' , '31.719646' , '340123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '340000' ORDER BY id ASC LIMIT 1) m), '六安市' , '0564' , '116.507676' , '31.752889' , '341500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '霍山县' , '0564' , '116.333078' , '31.402456' , '341525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '裕安区' , '0564' , '116.494543' , '31.750692' , '341503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '金寨县' , '0564' , '115.878514' , '31.681624' , '341524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '金安区' , '0564' , '116.503288' , '31.754491' , '341502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '霍邱县' , '0564' , '116.278875' , '32.341305' , '341522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '叶集区' , '0564' , '115.913594' , '31.84768' , '341504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '341500' ORDER BY id ASC LIMIT 1) m), '舒城县' , '0564' , '116.944088' , '31.462848' , '341523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '福建省' , '' , '119.306239' , '26.075302' , '350000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '莆田市' , '0594' , '119.007558' , '25.431011' , '350300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350300' ORDER BY id ASC LIMIT 1) m), '荔城区' , '0594' , '119.020047' , '25.430047' , '350304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350300' ORDER BY id ASC LIMIT 1) m), '秀屿区' , '0594' , '119.092607' , '25.316141' , '350305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350300' ORDER BY id ASC LIMIT 1) m), '涵江区' , '0594' , '119.119102' , '25.459273' , '350303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350300' ORDER BY id ASC LIMIT 1) m), '仙游县' , '0594' , '118.694331' , '25.356529' , '350322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350300' ORDER BY id ASC LIMIT 1) m), '城厢区' , '0594' , '119.001028' , '25.433737' , '350302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '漳州市' , '0596' , '117.661801' , '24.510897' , '350600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '华安县' , '0596' , '117.53631' , '25.001416' , '350629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '漳浦县' , '0596' , '117.614023' , '24.117907' , '350623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '龙海区' , '0596' , '117.817292' , '24.445341' , '350681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '东山县' , '0596' , '117.427679' , '23.702845' , '350626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '芗城区' , '0596' , '117.656461' , '24.509955' , '350602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '长泰区' , '0596' , '117.755913' , '24.621475' , '350625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '诏安县' , '0596' , '117.176083' , '23.710834' , '350624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '南靖县' , '0596' , '117.365462' , '24.516425' , '350627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '平和县' , '0596' , '117.313549' , '24.366158' , '350628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '云霄县' , '0596' , '117.340946' , '23.950486' , '350622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350600' ORDER BY id ASC LIMIT 1) m), '龙文区' , '0596' , '117.671387' , '24.515656' , '350603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '泉州市' , '0595' , '118.589421' , '24.908853' , '350500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '德化县' , '0595' , '118.242986' , '25.489004' , '350526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '永春县' , '0595' , '118.29503' , '25.320721' , '350525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '洛江区' , '0595' , '118.670312' , '24.941153' , '350504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '惠安县' , '0595' , '118.798954' , '25.028718' , '350521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '南安市' , '0595' , '118.387031' , '24.959494' , '350583' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '晋江市' , '0595' , '118.577338' , '24.807322' , '350582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '石狮市' , '0595' , '118.628402' , '24.731978' , '350581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '金门县' , '0595' , '118.323221' , '24.436417' , '350527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '泉港区' , '0595' , '118.912285' , '25.126859' , '350505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '安溪县' , '0595' , '118.186014' , '25.056824' , '350524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '鲤城区' , '0595' , '118.588929' , '24.907645' , '350502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350500' ORDER BY id ASC LIMIT 1) m), '丰泽区' , '0595' , '118.605147' , '24.896041' , '350503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '福州市' , '0591' , '119.306239' , '26.075302' , '350100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '罗源县' , '0591' , '119.552645' , '26.487234' , '350123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '永泰县' , '0591' , '118.939089' , '25.864825' , '350125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '连江县' , '0591' , '119.538365' , '26.202109' , '350122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '闽清县' , '0591' , '118.868416' , '26.223793' , '350124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '长乐区' , '0591' , '119.510849' , '25.960583' , '350112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '福清市' , '0591' , '119.376992' , '25.720402' , '350181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '平潭县' , '0591' , '119.791197' , '25.503672' , '350128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '台江区' , '0591' , '119.310156' , '26.058616' , '350103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '马尾区' , '0591' , '119.458725' , '25.991975' , '350105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '仓山区' , '0591' , '119.320988' , '26.038912' , '350104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '闽侯县' , '0591' , '119.145117' , '26.148567' , '350121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '鼓楼区' , '0591' , '119.29929' , '26.082284' , '350102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350100' ORDER BY id ASC LIMIT 1) m), '晋安区' , '0591' , '119.328597' , '26.078837' , '350111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '厦门市' , '0592' , '118.11022' , '24.490474' , '350200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '湖里区' , '0592' , '118.10943' , '24.512764' , '350206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '思明区' , '0592' , '118.087828' , '24.462059' , '350203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '翔安区' , '0592' , '118.242811' , '24.637479' , '350213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '海沧区' , '0592' , '118.036364' , '24.492512' , '350205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '集美区' , '0592' , '118.100869' , '24.572874' , '350211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350200' ORDER BY id ASC LIMIT 1) m), '同安区' , '0592' , '118.150455' , '24.729333' , '350212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '宁德市' , '0593' , '119.527082' , '26.65924' , '350900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '福安市' , '0593' , '119.650798' , '27.084246' , '350981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '福鼎市' , '0593' , '120.219761' , '27.318884' , '350982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '寿宁县' , '0593' , '119.506733' , '27.457798' , '350924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '古田县' , '0593' , '118.743156' , '26.577491' , '350922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '霞浦县' , '0593' , '120.005214' , '26.882068' , '350921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '蕉城区' , '0593' , '119.527225' , '26.659253' , '350902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '柘荣县' , '0593' , '119.898226' , '27.236163' , '350926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '周宁县' , '0593' , '119.338239' , '27.103106' , '350925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350900' ORDER BY id ASC LIMIT 1) m), '屏南县' , '0593' , '118.987544' , '26.910826' , '350923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '南平市' , '0599' , '118.178459' , '26.635627' , '350700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '武夷山市' , '0599' , '118.032796' , '27.751733' , '350782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '浦城县' , '0599' , '118.536822' , '27.920412' , '350722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '光泽县' , '0599' , '117.337897' , '27.542803' , '350723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '松溪县' , '0599' , '118.783491' , '27.525785' , '350724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '建阳区' , '0599' , '118.12267' , '27.332067' , '350703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '邵武市' , '0599' , '117.491544' , '27.337952' , '350781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '政和县' , '0599' , '118.858661' , '27.365398' , '350725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '建瓯市' , '0599' , '118.321765' , '27.03502' , '350783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '顺昌县' , '0599' , '117.80771' , '26.792851' , '350721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350700' ORDER BY id ASC LIMIT 1) m), '延平区' , '0599' , '118.178918' , '26.636079' , '350702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '三明市' , '0598' , '117.635001' , '26.265444' , '350400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '泰宁县' , '0598' , '117.177522' , '26.897995' , '350429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '大田县' , '0598' , '117.849355' , '25.690803' , '350425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '建宁县' , '0598' , '116.845832' , '26.831398' , '350430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '沙县区' , '0598' , '117.789095' , '26.397361' , '350427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '尤溪县' , '0598' , '118.188577' , '26.169261' , '350426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '将乐县' , '0598' , '117.473558' , '26.728667' , '350428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '明溪县' , '0598' , '117.201845' , '26.357375' , '350421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '宁化县' , '0598' , '116.659725' , '26.259932' , '350424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '三元区' , '0598' , '117.607418' , '26.234191' , '350403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '永安市' , '0598' , '117.364447' , '25.974075' , '350481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350400' ORDER BY id ASC LIMIT 1) m), '清流县' , '0598' , '116.815821' , '26.17761' , '350423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350000' ORDER BY id ASC LIMIT 1) m), '龙岩市' , '0597' , '117.02978' , '25.091603' , '350800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '上杭县' , '0597' , '116.424774' , '25.050019' , '350823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '武平县' , '0597' , '116.100928' , '25.08865' , '350824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '漳平市' , '0597' , '117.42073' , '25.291597' , '350881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '新罗区' , '0597' , '117.030721' , '25.0918' , '350802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '长汀县' , '0597' , '116.361007' , '25.842278' , '350821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '永定区' , '0597' , '116.732691' , '24.720442' , '350803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '350800' ORDER BY id ASC LIMIT 1) m), '连城县' , '0597' , '116.756687' , '25.708506' , '350825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '湖南省' , '' , '112.982279' , '28.19409' , '430000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '衡阳市' , '0734' , '112.607693' , '26.900358' , '430400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '南岳区' , '0734' , '112.734147' , '27.240536' , '430412' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '衡阳县' , '0734' , '112.379643' , '26.962388' , '430421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '衡东县' , '0734' , '112.950412' , '27.083531' , '430424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '衡山县' , '0734' , '112.86971' , '27.234808' , '430423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '雁峰区' , '0734' , '112.612241' , '26.893694' , '430406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '祁东县' , '0734' , '112.111192' , '26.787109' , '430426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '衡南县' , '0734' , '112.677459' , '26.739973' , '430422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '石鼓区' , '0734' , '112.607635' , '26.903908' , '430407' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '珠晖区' , '0734' , '112.626324' , '26.891063' , '430405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '耒阳市' , '0734' , '112.847215' , '26.414162' , '430481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '蒸湘区' , '0734' , '112.570608' , '26.89087' , '430408' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430400' ORDER BY id ASC LIMIT 1) m), '常宁市' , '0734' , '112.396821' , '26.406773' , '430482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '张家界市' , '0744' , '110.479921' , '29.127401' , '430800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430800' ORDER BY id ASC LIMIT 1) m), '慈利县' , '0744' , '111.132702' , '29.423876' , '430821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430800' ORDER BY id ASC LIMIT 1) m), '武陵源区' , '0744' , '110.54758' , '29.347827' , '430811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430800' ORDER BY id ASC LIMIT 1) m), '永定区' , '0744' , '110.484559' , '29.125961' , '430802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430800' ORDER BY id ASC LIMIT 1) m), '桑植县' , '0744' , '110.164039' , '29.399939' , '430822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '长沙市' , '0731' , '112.982279' , '28.19409' , '430100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '岳麓区' , '0731' , '112.911591' , '28.213044' , '430104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '开福区' , '0731' , '112.985525' , '28.201336' , '430105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '宁乡市' , '0731' , '112.553182' , '28.253928' , '430182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '雨花区' , '0731' , '113.016337' , '28.109937' , '430111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '望城区' , '0731' , '112.819549' , '28.347458' , '430112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '长沙县' , '0731' , '113.080098' , '28.237888' , '430121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '浏阳市' , '0731' , '113.633301' , '28.141112' , '430181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '天心区' , '0731' , '112.97307' , '28.192375' , '430103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430100' ORDER BY id ASC LIMIT 1) m), '芙蓉区' , '0731' , '112.988094' , '28.193106' , '430102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '岳阳市' , '0730' , '113.132855' , '29.37029' , '430600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '华容县' , '0730' , '112.559369' , '29.524107' , '430623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '君山区' , '0730' , '113.004082' , '29.438062' , '430611' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '汨罗市' , '0730' , '113.079419' , '28.803149' , '430681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '云溪区' , '0730' , '113.27387' , '29.473395' , '430603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '岳阳楼区' , '0730' , '113.120751' , '29.366784' , '430602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '湘阴县' , '0730' , '112.889748' , '28.677498' , '430624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '临湘市' , '0730' , '113.450809' , '29.471594' , '430682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '岳阳县' , '0730' , '113.116073' , '29.144843' , '430621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430600' ORDER BY id ASC LIMIT 1) m), '平江县' , '0730' , '113.593751' , '28.701523' , '430626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '怀化市' , '0745' , '109.97824' , '27.550082' , '431200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '洪江市' , '0745' , '109.831765' , '27.201876' , '431281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '芷江侗族自治县' , '0745' , '109.687777' , '27.437996' , '431228' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '通道侗族自治县' , '0745' , '109.783359' , '26.158349' , '431230' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '沅陵县' , '0745' , '110.399161' , '28.455554' , '431222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '辰溪县' , '0745' , '110.196953' , '28.005474' , '431223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '溆浦县' , '0745' , '110.593373' , '27.903802' , '431224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '会同县' , '0745' , '109.720785' , '26.870789' , '431225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '靖州苗族侗族自治县' , '0745' , '109.691159' , '26.573511' , '431229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '麻阳苗族自治县' , '0745' , '109.802807' , '27.865991' , '431226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '新晃侗族自治县' , '0745' , '109.174443' , '27.359897' , '431227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '中方县' , '0745' , '109.948061' , '27.43736' , '431221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431200' ORDER BY id ASC LIMIT 1) m), '鹤城区' , '0745' , '109.982242' , '27.548474' , '431202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '常德市' , '0736' , '111.691347' , '29.040225' , '430700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '津市市' , '0736' , '111.879609' , '29.630867' , '430781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '澧县' , '0736' , '111.761682' , '29.64264' , '430723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '汉寿县' , '0736' , '111.968506' , '28.907319' , '430722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '鼎城区' , '0736' , '111.685327' , '29.014426' , '430703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '武陵区' , '0736' , '111.690718' , '29.040477' , '430702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '桃源县' , '0736' , '111.484503' , '28.902734' , '430725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '安乡县' , '0736' , '112.172289' , '29.414483' , '430721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '临澧县' , '0736' , '111.645602' , '29.443217' , '430724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430700' ORDER BY id ASC LIMIT 1) m), '石门县' , '0736' , '111.379087' , '29.584703' , '430726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '湘西土家族苗族自治州' , '0743' , '109.739735' , '28.314296' , '433100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '永顺县' , '0743' , '109.853292' , '28.998068' , '433127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '保靖县' , '0743' , '109.651445' , '28.709605' , '433125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '花垣县' , '0743' , '109.479063' , '28.581352' , '433124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '吉首市' , '0743' , '109.738273' , '28.314827' , '433101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '泸溪县' , '0743' , '110.214428' , '28.214516' , '433122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '古丈县' , '0743' , '109.949592' , '28.616973' , '433126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '龙山县' , '0743' , '109.441189' , '29.453438' , '433130' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '433100' ORDER BY id ASC LIMIT 1) m), '凤凰县' , '0743' , '109.599191' , '27.948308' , '433123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '湘潭市' , '0732' , '112.944052' , '27.82973' , '430300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430300' ORDER BY id ASC LIMIT 1) m), '岳塘区' , '0732' , '112.927707' , '27.828854' , '430304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430300' ORDER BY id ASC LIMIT 1) m), '雨湖区' , '0732' , '112.907427' , '27.86077' , '430302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430300' ORDER BY id ASC LIMIT 1) m), '湘潭县' , '0732' , '112.952829' , '27.778601' , '430321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430300' ORDER BY id ASC LIMIT 1) m), '韶山市' , '0732' , '112.52848' , '27.922682' , '430382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430300' ORDER BY id ASC LIMIT 1) m), '湘乡市' , '0732' , '112.525217' , '27.734918' , '430381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '株洲市' , '0733' , '113.151737' , '27.835806' , '430200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '荷塘区' , '0733' , '113.162548' , '27.833036' , '430202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '攸县' , '0733' , '113.345774' , '27.000071' , '430223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '茶陵县' , '0733' , '113.546509' , '26.789534' , '430224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '炎陵县' , '0733' , '113.776884' , '26.489459' , '430225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '芦淞区' , '0733' , '113.155169' , '27.827246' , '430203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '渌口区' , '0733' , '113.146175' , '27.705844' , '430212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '天元区' , '0733' , '113.136252' , '27.826909' , '430211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '石峰区' , '0733' , '113.11295' , '27.871945' , '430204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430200' ORDER BY id ASC LIMIT 1) m), '醴陵市' , '0733' , '113.507157' , '27.657873' , '430281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '邵阳市' , '0739' , '111.46923' , '27.237842' , '430500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '隆回县' , '0739' , '111.038785' , '27.116002' , '430524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '双清区' , '0739' , '111.479756' , '27.240001' , '430502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '邵阳县' , '0739' , '111.2757' , '26.989713' , '430523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '大祥区' , '0739' , '111.462968' , '27.233593' , '430503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '北塔区' , '0739' , '111.452315' , '27.245688' , '430511' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '绥宁县' , '0739' , '110.155075' , '26.580622' , '430527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '城步苗族自治县' , '0739' , '110.313226' , '26.363575' , '430529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '新邵县' , '0739' , '111.459762' , '27.311429' , '430522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '邵东市' , '0739' , '111.743168' , '27.257273' , '430582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '新宁县' , '0739' , '110.859115' , '26.438912' , '430528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '洞口县' , '0739' , '110.579212' , '27.062286' , '430525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430500' ORDER BY id ASC LIMIT 1) m), '武冈市' , '0739' , '110.636804' , '26.732086' , '430581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '郴州市' , '0735' , '113.032067' , '25.793589' , '431000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '资兴市' , '0735' , '113.23682' , '25.974152' , '431081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '永兴县' , '0735' , '113.114819' , '26.129392' , '431023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '安仁县' , '0735' , '113.27217' , '26.708625' , '431028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '桂东县' , '0735' , '113.945879' , '26.073917' , '431027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '北湖区' , '0735' , '113.032208' , '25.792628' , '431002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '汝城县' , '0735' , '113.685686' , '25.553759' , '431026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '苏仙区' , '0735' , '113.038698' , '25.793157' , '431003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '宜章县' , '0735' , '112.947884' , '25.394345' , '431022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '桂阳县' , '0735' , '112.734466' , '25.737447' , '431021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '嘉禾县' , '0735' , '112.370618' , '25.587309' , '431024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431000' ORDER BY id ASC LIMIT 1) m), '临武县' , '0735' , '112.564589' , '25.279119' , '431025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '永州市' , '0746' , '111.608019' , '26.434516' , '431100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '东安县' , '0746' , '111.313035' , '26.397278' , '431122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '祁阳市' , '0746' , '111.85734' , '26.585929' , '431121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '零陵区' , '0746' , '111.626348' , '26.223347' , '431102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '冷水滩区' , '0746' , '111.607156' , '26.434364' , '431103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '新田县' , '0746' , '112.220341' , '25.906927' , '431128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '宁远县' , '0746' , '111.944529' , '25.584112' , '431126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '双牌县' , '0746' , '111.662146' , '25.959397' , '431123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '蓝山县' , '0746' , '112.194195' , '25.375255' , '431127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '江永县' , '0746' , '111.346803' , '25.268154' , '431125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '道县' , '0746' , '111.591614' , '25.518444' , '431124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431100' ORDER BY id ASC LIMIT 1) m), '江华瑶族自治县' , '0746' , '111.577276' , '25.182596' , '431129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '益阳市' , '0737' , '112.355042' , '28.570066' , '430900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '桃江县' , '0737' , '112.139732' , '28.520993' , '430922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '资阳区' , '0737' , '112.33084' , '28.592771' , '430902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '赫山区' , '0737' , '112.360946' , '28.568327' , '430903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '安化县' , '0737' , '111.221824' , '28.377421' , '430923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '南县' , '0737' , '112.410399' , '29.372181' , '430921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430900' ORDER BY id ASC LIMIT 1) m), '沅江市' , '0737' , '112.361088' , '28.839713' , '430981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '430000' ORDER BY id ASC LIMIT 1) m), '娄底市' , '0738' , '112.008497' , '27.728136' , '431300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431300' ORDER BY id ASC LIMIT 1) m), '冷水江市' , '0738' , '111.434674' , '27.685759' , '431381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431300' ORDER BY id ASC LIMIT 1) m), '新化县' , '0738' , '111.306747' , '27.737456' , '431322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431300' ORDER BY id ASC LIMIT 1) m), '涟源市' , '0738' , '111.670847' , '27.692301' , '431382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431300' ORDER BY id ASC LIMIT 1) m), '双峰县' , '0738' , '112.198245' , '27.459126' , '431321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '431300' ORDER BY id ASC LIMIT 1) m), '娄星区' , '0738' , '112.008486' , '27.726643' , '431302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '海南省' , '' , '110.33119' , '20.031971' , '460000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '定安县' , '0806' , '110.349235' , '19.684966' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '黄竹镇' , '0806' , '110.528' , '19.4887' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '富文镇' , '0806' , '110.232' , '19.521' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '新竹镇' , '0806' , '110.159' , '19.5843' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '国营中瑞农场' , '0806' , '110.244' , '19.3008' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '定城镇' , '0806' , '110.317' , '19.7017' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '岭口镇' , '0806' , '110.276' , '19.3601' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '国营南海农场' , '0806' , '110.469' , '19.4432' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '雷鸣镇' , '0806' , '110.273' , '19.5137' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '翰林镇' , '0806' , '110.24' , '19.2982' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '龙门镇' , '0806' , '110.298' , '19.4997' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '国营金鸡岭农场' , '0806' , '110.252' , '19.5171' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '龙湖镇' , '0806' , '110.469' , '19.5845' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469021' ORDER BY id ASC LIMIT 1) m), '龙河镇' , '0806' , '110.226' , '19.4221' , '469021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '临高县' , '1896' , '109.687697' , '19.908293' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '南宝镇' , '1896' , '109.638' , '19.7516' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '博厚镇' , '1896' , '109.716' , '19.893' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '和舍镇' , '1896' , '109.715' , '19.6717' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '东英镇' , '1896' , '109.613' , '19.9349' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '调楼镇' , '1896' , '109.61' , '19.9231' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '波莲镇' , '1896' , '109.615' , '19.8555' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '多文镇' , '1896' , '109.802' , '19.7418' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '国营加来农场' , '1896' , '109.651' , '19.7591' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '新盈镇' , '1896' , '109.624' , '19.8719' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '临城镇' , '1896' , '109.673' , '19.8932' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '国营红华农场' , '1896' , '109.764' , '19.8244' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469024' ORDER BY id ASC LIMIT 1) m), '皇桐镇' , '1896' , '109.816' , '19.8743' , '469024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '万宁市' , '1898' , '110.388793' , '18.796216' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '万城镇' , '1898' , '110.414' , '18.8276' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '大茂镇' , '1898' , '110.39' , '18.8759' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '国营东和农场' , '1898' , '110.217' , '18.7629' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '后安镇' , '1898' , '110.374' , '18.9087' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '礼纪镇' , '1898' , '110.269' , '18.7354' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '国营东兴农场' , '1898' , '110.375' , '18.894' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '山根镇' , '1898' , '110.483' , '18.9946' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '龙滚镇' , '1898' , '110.495' , '18.9855' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '兴隆华侨农场' , '1898' , '110.106' , '18.8195' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '和乐镇' , '1898' , '110.416' , '18.9625' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '三更罗镇' , '1898' , '110.214' , '18.9979' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '长丰镇' , '1898' , '110.321' , '18.7876' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '国营新中农场' , '1898' , '110.17' , '18.6967' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '北大镇' , '1898' , '110.24' , '18.9316' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '地方国营六连林场' , '1898' , '110.505' , '18.9899' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '南桥镇' , '1898' , '110.196' , '18.7201' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469006' ORDER BY id ASC LIMIT 1) m), '东澳镇' , '1898' , '110.429' , '18.6408' , '469006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '琼中黎族苗族自治县' , '1899' , '109.839996' , '19.03557' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '吊罗山乡' , '1899' , '109.917' , '18.8198' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '什运乡' , '1899' , '109.583' , '18.9237' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '和平镇' , '1899' , '109.894' , '18.899' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '湾岭镇' , '1899' , '109.9' , '19.1334' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '国营加钗农场' , '1899' , '109.783' , '19.0265' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '国营乌石农场' , '1899' , '109.937' , '19.0977' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '国营阳江农场' , '1899' , '109.823' , '19.2127' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '上安乡' , '1899' , '109.731' , '18.9133' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '营根镇' , '1899' , '109.733' , '18.9748' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '中平镇' , '1899' , '110.107' , '19.0716' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '国营黎母山林业公司' , '1899' , '109.703' , '19.1542' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '黎母山镇' , '1899' , '109.704' , '19.2577' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '国营长征农场' , '1899' , '109.899' , '18.9965' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '红毛镇' , '1899' , '109.734' , '19.0657' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469030' ORDER BY id ASC LIMIT 1) m), '长征镇' , '1899' , '109.799' , '18.8976' , '469030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '昌江黎族自治县' , '0803' , '109.053351' , '19.260968' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '十月田镇' , '0803' , '108.989' , '19.3818' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '国营霸王岭林场' , '0803' , '109.03' , '19.1725' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '乌烈镇' , '0803' , '108.81' , '19.3525' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '七叉镇' , '0803' , '109.069' , '19.1732' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '海南矿业联合有限公司' , '0803' , '108.989' , '19.2538' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '叉河镇' , '0803' , '108.989' , '19.2536' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '海尾镇' , '0803' , '108.952' , '19.4945' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '石碌镇' , '0803' , '109.05' , '19.2444' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '国营红林农场' , '0803' , '109.088' , '19.2367' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '昌化镇' , '0803' , '108.732' , '19.3836' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469026' ORDER BY id ASC LIMIT 1) m), '王下乡' , '0803' , '109.094' , '18.9052' , '469026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '白沙黎族自治县' , '0802' , '109.452606' , '19.224584' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '七坊镇' , '0802' , '109.298' , '19.3459' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '金波乡' , '0802' , '109.157' , '19.2577' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '南开乡' , '0802' , '109.293' , '19.0596' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '荣邦乡' , '0802' , '109.064' , '19.4868' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '青松乡' , '0802' , '109.302' , '19.0689' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '邦溪镇' , '0802' , '109.09' , '19.3912' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '国营龙江农场' , '0802' , '109.178' , '19.2369' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '细水乡' , '0802' , '109.523' , '19.2096' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '元门乡' , '0802' , '109.455' , '19.0981' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '牙叉镇' , '0802' , '109.45' , '19.3004' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '国营白沙农场' , '0802' , '109.429' , '19.2881' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '打安镇' , '0802' , '109.36' , '19.3756' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '阜龙乡' , '0802' , '109.436' , '19.3316' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469025' ORDER BY id ASC LIMIT 1) m), '国营邦溪农场' , '0802' , '109.18' , '19.4104' , '469025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '屯昌县' , '1892' , '110.102773' , '19.362916' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '国营中建农场' , '1892' , '109.966' , '19.2466' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '屯城镇' , '1892' , '110.161' , '19.4468' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '南吕镇' , '1892' , '110.05' , '19.2222' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '新兴镇' , '1892' , '110.154' , '19.5707' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '西昌镇' , '1892' , '110.024' , '19.4428' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '坡心镇' , '1892' , '110.11' , '19.3302' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '国营中坤农场' , '1892' , '109.855' , '19.2944' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '枫木镇' , '1892' , '109.994' , '19.1901' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '南坤镇' , '1892' , '109.857' , '19.2939' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469022' ORDER BY id ASC LIMIT 1) m), '乌坡镇' , '1892' , '110.093' , '19.1953' , '469022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '琼海市' , '1894' , '110.466785' , '19.246011' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '嘉积镇' , '1894' , '110.441' , '19.3208' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '会山镇' , '1894' , '110.302' , '19.0792' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '国营东升农场' , '1894' , '110.413' , '19.284' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '国营东太农场' , '1894' , '110.367' , '19.1372' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '彬村山华侨农场' , '1894' , '110.623' , '19.3022' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '万泉镇' , '1894' , '110.364' , '19.2516' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '国营东红农场' , '1894' , '110.509' , '19.364' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '大路镇' , '1894' , '110.424' , '19.354' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '塔洋镇' , '1894' , '110.475' , '19.3404' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '潭门镇' , '1894' , '110.546' , '19.2013' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '龙江镇' , '1894' , '110.36' , '19.1595' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '石壁镇' , '1894' , '110.168' , '19.167' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '长坡镇' , '1894' , '110.594' , '19.3213' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '博鳌镇' , '1894' , '110.495' , '19.1766' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '中原镇' , '1894' , '110.419' , '19.1765' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469002' ORDER BY id ASC LIMIT 1) m), '阳江镇' , '1894' , '110.334' , '19.0558' , '469002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '东方市' , '0807' , '108.653789' , '19.10198' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '东方华侨农场' , '0807' , '108.696' , '18.9726' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '东河镇' , '0807' , '108.991' , '19.1321' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '江边乡' , '0807' , '109.108' , '18.8945' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '新龙镇' , '0807' , '108.686' , '18.9263' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '天安乡' , '0807' , '108.817' , '18.8803' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '国营广坝农场' , '0807' , '108.732' , '18.8589' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '感城镇' , '0807' , '108.83' , '18.8833' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '三家镇' , '0807' , '108.798' , '19.2498' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '四更镇' , '0807' , '108.606' , '19.2646' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '大田镇' , '0807' , '108.976' , '19.1314' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '八所镇' , '0807' , '108.622' , '19.0927' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469007' ORDER BY id ASC LIMIT 1) m), '板桥镇' , '0807' , '108.87' , '18.8744' , '469007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '乐东黎族自治县' , '2802' , '109.175444' , '18.74758' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '莺歌海镇' , '2802' , '108.728' , '18.4959' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '国营山荣农场' , '2802' , '109.223' , '18.7507' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '国营保国农场' , '2802' , '109.245' , '18.6612' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '万冲镇' , '2802' , '109.339' , '18.7838' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '抱由镇' , '2802' , '109.138' , '18.8948' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '利国镇' , '2802' , '108.965' , '18.529' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '国营乐光农场' , '2802' , '109.192' , '18.5331' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '佛罗镇' , '2802' , '108.792' , '18.5833' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '大安镇' , '2802' , '109.225' , '18.5876' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '九所镇' , '2802' , '108.927' , '18.5276' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '国营莺歌海盐场' , '2802' , '108.729' , '18.5523' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '国营尖峰岭林业公司' , '2802' , '109.027' , '18.726' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '志仲镇' , '2802' , '109.224' , '18.5932' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '尖峰镇' , '2802' , '108.7' , '18.7124' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '黄流镇' , '2802' , '108.808' , '18.597' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469027' ORDER BY id ASC LIMIT 1) m), '千家镇' , '2802' , '109.15' , '18.6353' , '469027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '文昌市' , '1893' , '110.753975' , '19.612986' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '会文镇' , '1893' , '110.708' , '19.4957' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '东阁镇' , '1893' , '110.799' , '19.7566' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '文教镇' , '1893' , '110.856' , '19.7083' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '国营罗豆农场' , '1893' , '110.624' , '19.9713' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '国营东路农场' , '1893' , '110.714' , '19.8524' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '铺前镇' , '1893' , '110.675' , '20.0377' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '锦山镇' , '1893' , '110.67' , '20.0418' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '东郊镇' , '1893' , '110.91' , '19.6291' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '翁田镇' , '1893' , '110.813' , '19.9295' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '龙楼镇' , '1893' , '110.938' , '19.6606' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '国营南阳农场' , '1893' , '110.556' , '19.4727' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '冯坡镇' , '1893' , '110.774' , '20.0176' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '昌洒镇' , '1893' , '111.26' , '19.9626' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '公坡镇' , '1893' , '110.836' , '19.8543' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '文城镇' , '1893' , '110.708' , '19.4982' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '东路镇' , '1893' , '110.658' , '19.8051' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '重兴镇' , '1893' , '110.654' , '19.4341' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '蓬莱镇' , '1893' , '110.638' , '19.5164' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '潭牛镇' , '1893' , '110.623' , '19.6785' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469005' ORDER BY id ASC LIMIT 1) m), '抱罗镇' , '1893' , '110.73' , '19.889' , '469005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '儋州市' , '0805' , '109.576782' , '19.517486' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '洋浦经济开发区' , '0805' , '109.162' , '19.7962' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '光村镇' , '0805' , '109.467' , '19.9035' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '兰洋镇' , '0805' , '109.682' , '19.4833' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '和庆镇' , '0805' , '109.677' , '19.5887' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '东成镇' , '0805' , '109.579' , '19.7102' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '国营蓝洋农场' , '0805' , '109.618' , '19.5107' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '华南热作学院' , '0805' , '109.505' , '19.573' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '王五镇' , '0805' , '109.258' , '19.6415' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '海头镇' , '0805' , '108.948' , '19.4939' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '中和镇' , '0805' , '109.351' , '19.7747' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '新州镇' , '0805' , '109.321' , '19.7523' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '木棠镇' , '0805' , '109.33' , '19.8594' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '排浦镇' , '0805' , '109.196' , '19.65' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '雅星镇' , '0805' , '109.156' , '19.4695' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '国营八一农场' , '0805' , '109.23' , '19.3915' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '南丰镇' , '0805' , '109.532' , '19.4981' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '国营西联农场' , '0805' , '109.537' , '19.6556' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '国营西培农场' , '0805' , '109.31' , '19.4969' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '白马井镇' , '0805' , '109.268' , '19.7046' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '大成镇' , '0805' , '109.345' , '19.4765' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '三都镇' , '0805' , '109.176' , '19.7946' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '那大镇' , '0805' , '109.573' , '19.5907' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460400' ORDER BY id ASC LIMIT 1) m), '峨蔓镇' , '0805' , '109.333' , '19.8438' , '460400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '澄迈县' , '0804' , '110.007147' , '19.737095' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '桥头镇' , '0804' , '109.931' , '19.9171' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '福山镇' , '0804' , '109.919' , '19.7325' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '永发镇' , '0804' , '110.186' , '19.6424' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '中兴镇' , '0804' , '109.938' , '19.5697' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '金江镇' , '0804' , '109.987' , '19.7817' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '文儒镇' , '0804' , '110.121' , '19.6454' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '老城镇' , '0804' , '110.159' , '19.9529' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营红岗农场' , '0804' , '110.038' , '19.5642' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '瑞溪镇' , '0804' , '110.087' , '19.7731' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营红光农场' , '0804' , '109.957' , '19.8731' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '加乐镇' , '0804' , '110.042' , '19.6276' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '大丰镇' , '0804' , '109.989' , '19.904' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营昆仑农场' , '0804' , '109.802' , '19.5127' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营和岭农场' , '0804' , '109.814' , '19.5367' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营金安农场' , '0804' , '110.123' , '19.7367' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '仁兴镇' , '0804' , '109.916' , '19.5062' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469023' ORDER BY id ASC LIMIT 1) m), '国营西达农场' , '0804' , '109.862' , '19.4343' , '469023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '三沙市' , '2898' , '112.34882' , '16.831039' , '460300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460300' ORDER BY id ASC LIMIT 1) m), '南沙区' , '2898' , '112.891018' , '9.543575' , '460302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460300' ORDER BY id ASC LIMIT 1) m), '西沙区' , '2898' , '112.3386402' , '16.8310066' , '460301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '陵水黎族自治县' , '0809' , '110.037218' , '18.505006' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '椰林镇' , '0809' , '110.02' , '18.4825' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '黎安镇' , '0809' , '110.146' , '18.4342' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '新村镇' , '0809' , '110.026' , '18.446' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '文罗镇' , '0809' , '109.914' , '18.5734' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '国营南平农场' , '0809' , '109.833' , '18.6336' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '国营吊罗山林业公司' , '0809' , '109.948' , '18.6553' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '本号镇' , '0809' , '109.856' , '18.6617' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '群英乡' , '0809' , '109.847' , '18.5697' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '提蒙乡' , '0809' , '110.013' , '18.6404' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '光坡镇' , '0809' , '110.04' , '18.5564' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '三才镇' , '0809' , '109.963' , '18.4915' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '隆广镇' , '0809' , '109.858' , '18.4802' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '英州镇' , '0809' , '109.876' , '18.4739' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469028' ORDER BY id ASC LIMIT 1) m), '国营岭门农场' , '0809' , '110.046' , '18.6244' , '469028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '三亚市' , '0899' , '109.508268' , '18.247872' , '460200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460200' ORDER BY id ASC LIMIT 1) m), '海棠区' , '0899' , '109.760778' , '18.407516' , '460202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460200' ORDER BY id ASC LIMIT 1) m), '崖州区' , '0899' , '109.174306' , '18.352192' , '460205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460200' ORDER BY id ASC LIMIT 1) m), '吉阳区' , '0899' , '109.512081' , '18.247436' , '460203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460200' ORDER BY id ASC LIMIT 1) m), '天涯区' , '0899' , '109.506357' , '18.24734' , '460204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '海口市' , '0898' , '110.33119' , '20.031971' , '460100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460100' ORDER BY id ASC LIMIT 1) m), '美兰区' , '0898' , '110.356566' , '20.03074' , '460108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460100' ORDER BY id ASC LIMIT 1) m), '龙华区' , '0898' , '110.330373' , '20.031026' , '460106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460100' ORDER BY id ASC LIMIT 1) m), '琼山区' , '0898' , '110.354722' , '20.001051' , '460107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460100' ORDER BY id ASC LIMIT 1) m), '秀英区' , '0898' , '110.282393' , '20.008145' , '460105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '保亭黎族苗族自治县' , '0801' , '109.70245' , '18.636371' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '海南保亭热带作物研究所' , '0801' , '109.709' , '18.6282' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '加茂镇' , '0801' , '109.719' , '18.5033' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '新政镇' , '0801' , '109.578' , '18.5685' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '国营金江农场' , '0801' , '109.682' , '18.547' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '国营新星农场' , '0801' , '109.729' , '18.6749' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '保城镇' , '0801' , '109.747' , '18.6854' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '南林乡' , '0801' , '109.577' , '18.3893' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '国营三道农场' , '0801' , '109.649' , '18.5179' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '毛感乡' , '0801' , '109.503' , '18.5563' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '什玲镇' , '0801' , '109.74' , '18.6941' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '响水镇' , '0801' , '109.61' , '18.5626' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '六弓乡' , '0801' , '109.803' , '18.5393' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469029' ORDER BY id ASC LIMIT 1) m), '三道镇' , '0801' , '109.66' , '18.5251' , '469029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '460000' ORDER BY id ASC LIMIT 1) m), '五指山市' , '1897' , '109.516662' , '18.776921' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '毛阳镇' , '1897' , '109.45' , '18.8811' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '南圣镇' , '1897' , '109.687' , '18.8266' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '番阳镇' , '1897' , '109.334' , '18.9132' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '水满乡' , '1897' , '109.601' , '18.8995' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '通什镇' , '1897' , '109.614' , '18.8418' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '畅好乡' , '1897' , '109.397' , '18.6549' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '毛道乡' , '1897' , '109.356' , '18.7134' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '469001' ORDER BY id ASC LIMIT 1) m), '国营畅好农场' , '1897' , '109.523' , '18.7089' , '469001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '宁夏回族自治区' , '' , '106.278179' , '38.46637' , '640000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640000' ORDER BY id ASC LIMIT 1) m), '固原市' , '0954' , '106.285241' , '36.004561' , '640400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640400' ORDER BY id ASC LIMIT 1) m), '隆德县' , '0954' , '106.12344' , '35.618234' , '640423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640400' ORDER BY id ASC LIMIT 1) m), '原州区' , '0954' , '106.28477' , '36.005337' , '640402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640400' ORDER BY id ASC LIMIT 1) m), '彭阳县' , '0954' , '106.641512' , '35.849975' , '640425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640400' ORDER BY id ASC LIMIT 1) m), '西吉县' , '0954' , '105.731801' , '35.965384' , '640422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640400' ORDER BY id ASC LIMIT 1) m), '泾源县' , '0954' , '106.338674' , '35.49344' , '640424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640000' ORDER BY id ASC LIMIT 1) m), '中卫市' , '1953' , '105.189568' , '37.514951' , '640500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640500' ORDER BY id ASC LIMIT 1) m), '海原县' , '1953' , '105.647323' , '36.562007' , '640522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640500' ORDER BY id ASC LIMIT 1) m), '沙坡头区' , '1953' , '105.190536' , '37.514564' , '640502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640500' ORDER BY id ASC LIMIT 1) m), '中宁县' , '1953' , '105.675784' , '37.489736' , '640521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640000' ORDER BY id ASC LIMIT 1) m), '石嘴山市' , '0952' , '106.376173' , '39.01333' , '640200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640200' ORDER BY id ASC LIMIT 1) m), '平罗县' , '0952' , '106.54489' , '38.90674' , '640221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640200' ORDER BY id ASC LIMIT 1) m), '大武口区' , '0952' , '106.376651' , '39.014158' , '640202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640200' ORDER BY id ASC LIMIT 1) m), '惠农区' , '0952' , '106.775513' , '39.230094' , '640205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640000' ORDER BY id ASC LIMIT 1) m), '吴忠市' , '0953' , '106.199409' , '37.986165' , '640300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640300' ORDER BY id ASC LIMIT 1) m), '青铜峡市' , '0953' , '106.075395' , '38.021509' , '640381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640300' ORDER BY id ASC LIMIT 1) m), '同心县' , '0953' , '105.914764' , '36.9829' , '640324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640300' ORDER BY id ASC LIMIT 1) m), '盐池县' , '0953' , '107.40541' , '37.784222' , '640323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640300' ORDER BY id ASC LIMIT 1) m), '利通区' , '0953' , '106.199419' , '37.985967' , '640302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640300' ORDER BY id ASC LIMIT 1) m), '红寺堡区' , '0953' , '106.067315' , '37.421616' , '640303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640000' ORDER BY id ASC LIMIT 1) m), '银川市' , '0951' , '106.278179' , '38.46637' , '640100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '西夏区' , '0951' , '106.132116' , '38.492424' , '640105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '兴庆区' , '0951' , '106.278393' , '38.46747' , '640104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '永宁县' , '0951' , '106.253781' , '38.28043' , '640121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '灵武市' , '0951' , '106.334701' , '38.094058' , '640181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '贺兰县' , '0951' , '106.345904' , '38.554563' , '640122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '640100' ORDER BY id ASC LIMIT 1) m), '金凤区' , '0951' , '106.228486' , '38.477353' , '640106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '广西壮族自治区' , '' , '108.320004' , '22.82402' , '450000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '百色市' , '0776' , '106.616285' , '23.897742' , '451000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '乐业县' , '0776' , '106.559638' , '24.782204' , '451028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '隆林各族自治县' , '0776' , '105.342363' , '24.774318' , '451031' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '西林县' , '0776' , '105.095025' , '24.492041' , '451030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '凌云县' , '0776' , '106.56487' , '24.345643' , '451027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '靖西市' , '0776' , '106.417549' , '23.134766' , '451081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '右江区' , '0776' , '106.615727' , '23.897675' , '451002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '平果市' , '0776' , '107.580403' , '23.320479' , '451082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '那坡县' , '0776' , '105.833553' , '23.400785' , '451026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '田林县' , '0776' , '106.235047' , '24.290262' , '451029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '田东县' , '0776' , '107.12426' , '23.600444' , '451022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '田阳区' , '0776' , '106.904315' , '23.736079' , '451003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451000' ORDER BY id ASC LIMIT 1) m), '德保县' , '0776' , '106.618164' , '23.321464' , '451024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '北海市' , '0779' , '109.119254' , '21.473343' , '450500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450500' ORDER BY id ASC LIMIT 1) m), '铁山港区' , '0779' , '109.450573' , '21.5928' , '450512' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450500' ORDER BY id ASC LIMIT 1) m), '海城区' , '0779' , '109.107529' , '21.468443' , '450502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450500' ORDER BY id ASC LIMIT 1) m), '银海区' , '0779' , '109.118707' , '21.444909' , '450503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450500' ORDER BY id ASC LIMIT 1) m), '合浦县' , '0779' , '109.200695' , '21.663554' , '450521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '钦州市' , '0777' , '108.624175' , '21.967127' , '450700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450700' ORDER BY id ASC LIMIT 1) m), '钦南区' , '0777' , '108.626629' , '21.966808' , '450702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450700' ORDER BY id ASC LIMIT 1) m), '钦北区' , '0777' , '108.44911' , '22.132761' , '450703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450700' ORDER BY id ASC LIMIT 1) m), '灵山县' , '0777' , '109.293468' , '22.418041' , '450721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450700' ORDER BY id ASC LIMIT 1) m), '浦北县' , '0777' , '109.556341' , '22.268335' , '450722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '柳州市' , '0772' , '109.411703' , '24.314617' , '450200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '融水苗族自治县' , '0772' , '109.252744' , '25.068812' , '450225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '三江侗族自治县' , '0772' , '109.614846' , '25.78553' , '450226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '融安县' , '0772' , '109.403621' , '25.214703' , '450224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '鹿寨县' , '0772' , '109.740805' , '24.483405' , '450223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '城中区' , '0772' , '109.411749' , '24.312324' , '450202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '柳城县' , '0772' , '109.245812' , '24.655121' , '450222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '柳北区' , '0772' , '109.406577' , '24.359145' , '450205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '柳南区' , '0772' , '109.395936' , '24.287013' , '450204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '柳江区' , '0772' , '109.334503' , '24.257512' , '450206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450200' ORDER BY id ASC LIMIT 1) m), '鱼峰区' , '0772' , '109.415364' , '24.303848' , '450203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '梧州市' , '0774' , '111.297604' , '23.474803' , '450400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '蒙山县' , '0774' , '110.5226' , '24.199829' , '450423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '长洲区' , '0774' , '111.275678' , '23.4777' , '450405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '岑溪市' , '0774' , '110.998114' , '22.918406' , '450481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '龙圩区' , '0774' , '111.246035' , '23.40996' , '450406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '万秀区' , '0774' , '111.315817' , '23.471318' , '450403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '苍梧县' , '0774' , '111.544008' , '23.845097' , '450421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450400' ORDER BY id ASC LIMIT 1) m), '藤县' , '0774' , '110.931826' , '23.373963' , '450422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '桂林市' , '0773' , '110.299121' , '25.274215' , '450300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '七星区' , '0773' , '110.317577' , '25.254339' , '450305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '雁山区' , '0773' , '110.305667' , '25.077646' , '450311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '阳朔县' , '0773' , '110.494699' , '24.77534' , '450321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '荔浦市' , '0773' , '110.400149' , '24.497786' , '450381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '龙胜各族自治县' , '0773' , '110.009423' , '25.796428' , '450328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '灌阳县' , '0773' , '111.160248' , '25.489098' , '450327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '象山区' , '0773' , '110.284882' , '25.261986' , '450304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '秀峰区' , '0773' , '110.292445' , '25.278544' , '450302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '叠彩区' , '0773' , '110.300783' , '25.301334' , '450303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '灵川县' , '0773' , '110.325712' , '25.408541' , '450323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '资源县' , '0773' , '110.642587' , '26.0342' , '450329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '恭城瑶族自治县' , '0773' , '110.82952' , '24.833612' , '450332' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '平乐县' , '0773' , '110.642821' , '24.632216' , '450330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '兴安县' , '0773' , '110.670783' , '25.609554' , '450325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '全州县' , '0773' , '111.072989' , '25.929897' , '450324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '永福县' , '0773' , '109.989208' , '24.986692' , '450326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450300' ORDER BY id ASC LIMIT 1) m), '临桂区' , '0773' , '110.205487' , '25.246257' , '450312' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '贺州市' , '1774' , '111.552056' , '24.414141' , '451100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451100' ORDER BY id ASC LIMIT 1) m), '富川瑶族自治县' , '1774' , '111.277228' , '24.81896' , '451123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451100' ORDER BY id ASC LIMIT 1) m), '昭平县' , '1774' , '110.810865' , '24.172958' , '451121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451100' ORDER BY id ASC LIMIT 1) m), '平桂区' , '1774' , '111.524014' , '24.417148' , '451103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451100' ORDER BY id ASC LIMIT 1) m), '钟山县' , '1774' , '111.303629' , '24.528566' , '451122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451100' ORDER BY id ASC LIMIT 1) m), '八步区' , '1774' , '111.551991' , '24.412446' , '451102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '来宾市' , '1772' , '109.229772' , '23.733766' , '451300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '金秀瑶族自治县' , '1772' , '110.188556' , '24.134941' , '451324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '忻城县' , '1772' , '108.667361' , '24.064779' , '451321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '合山市' , '1772' , '108.88858' , '23.81311' , '451381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '象州县' , '1772' , '109.684555' , '23.959824' , '451322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '兴宾区' , '1772' , '109.230541' , '23.732926' , '451302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451300' ORDER BY id ASC LIMIT 1) m), '武宣县' , '1772' , '109.66287' , '23.604162' , '451323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '河池市' , '0778' , '108.062105' , '24.695899' , '451200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '南丹县' , '0778' , '107.546605' , '24.983192' , '451221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '罗城仫佬族自治县' , '0778' , '108.902453' , '24.779327' , '451225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '金城江区' , '0778' , '108.062131' , '24.695625' , '451202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '环江毛南族自治县' , '0778' , '108.258669' , '24.827628' , '451226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '天峨县' , '0778' , '107.174939' , '24.985964' , '451222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '凤山县' , '0778' , '107.044592' , '24.544561' , '451223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '都安瑶族自治县' , '0778' , '108.102761' , '23.934964' , '451228' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '宜州区' , '0778' , '108.653965' , '24.492193' , '451203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '大化瑶族自治县' , '0778' , '107.9945' , '23.739596' , '451229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '东兰县' , '0778' , '107.373696' , '24.509367' , '451224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451200' ORDER BY id ASC LIMIT 1) m), '巴马瑶族自治县' , '0778' , '107.253126' , '24.139538' , '451227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '防城港市' , '0770' , '108.345478' , '21.614631' , '450600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450600' ORDER BY id ASC LIMIT 1) m), '防城区' , '0770' , '108.358426' , '21.764758' , '450603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450600' ORDER BY id ASC LIMIT 1) m), '港口区' , '0770' , '108.346281' , '21.614406' , '450602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450600' ORDER BY id ASC LIMIT 1) m), '东兴市' , '0770' , '107.97017' , '21.541172' , '450681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450600' ORDER BY id ASC LIMIT 1) m), '上思县' , '0770' , '107.982139' , '22.151423' , '450621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '玉林市' , '0775' , '110.154393' , '22.63136' , '450900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '福绵区' , '0775' , '110.054155' , '22.58163' , '450903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '博白县' , '0775' , '109.980004' , '22.271285' , '450923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '陆川县' , '0775' , '110.264842' , '22.321054' , '450922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '玉州区' , '0775' , '110.154912' , '22.632132' , '450902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '容县' , '0775' , '110.552467' , '22.856435' , '450921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '北流市' , '0775' , '110.348052' , '22.701648' , '450981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450900' ORDER BY id ASC LIMIT 1) m), '兴业县' , '0775' , '109.877768' , '22.74187' , '450924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '贵港市' , '1755' , '109.602146' , '23.0936' , '450800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450800' ORDER BY id ASC LIMIT 1) m), '港北区' , '1755' , '109.59481' , '23.107677' , '450802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450800' ORDER BY id ASC LIMIT 1) m), '港南区' , '1755' , '109.604665' , '23.067516' , '450803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450800' ORDER BY id ASC LIMIT 1) m), '平南县' , '1755' , '110.397485' , '23.544546' , '450821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450800' ORDER BY id ASC LIMIT 1) m), '桂平市' , '1755' , '110.074668' , '23.382473' , '450881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450800' ORDER BY id ASC LIMIT 1) m), '覃塘区' , '1755' , '109.415697' , '23.132815' , '450804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '南宁市' , '0771' , '108.320004' , '22.82402' , '450100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '上林县' , '0771' , '108.603937' , '23.431769' , '450125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '马山县' , '0771' , '108.172903' , '23.711758' , '450124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '武鸣区' , '0771' , '108.280717' , '23.157163' , '450110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '宾阳县' , '0771' , '108.816735' , '23.216884' , '450126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '江南区' , '0771' , '108.310478' , '22.799593' , '450105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '良庆区' , '0771' , '108.322102' , '22.75909' , '450108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '邕宁区' , '0771' , '108.484251' , '22.756598' , '450109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '青秀区' , '0771' , '108.346113' , '22.816614' , '450103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '兴宁区' , '0771' , '108.320189' , '22.819511' , '450102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '西乡塘区' , '0771' , '108.306903' , '22.832779' , '450107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '隆安县' , '0771' , '107.688661' , '23.174763' , '450123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450100' ORDER BY id ASC LIMIT 1) m), '横州市' , '0771' , '109.270987' , '22.68743' , '450127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '450000' ORDER BY id ASC LIMIT 1) m), '崇左市' , '1771' , '107.353926' , '22.404108' , '451400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '扶绥县' , '1771' , '107.911533' , '22.635821' , '451421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '江州区' , '1771' , '107.354443' , '22.40469' , '451402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '凭祥市' , '1771' , '106.759038' , '22.108882' , '451481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '龙州县' , '1771' , '106.857502' , '22.343716' , '451423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '宁明县' , '1771' , '107.067616' , '22.131353' , '451422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '大新县' , '1771' , '107.200803' , '22.833369' , '451424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '451400' ORDER BY id ASC LIMIT 1) m), '天等县' , '1771' , '107.142441' , '23.082484' , '451425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '浙江省' , '' , '120.153576' , '30.287459' , '330000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '舟山市' , '0580' , '122.106863' , '30.016028' , '330900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330900' ORDER BY id ASC LIMIT 1) m), '嵊泗县' , '0580' , '122.457809' , '30.727166' , '330922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330900' ORDER BY id ASC LIMIT 1) m), '岱山县' , '0580' , '122.201132' , '30.242865' , '330921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330900' ORDER BY id ASC LIMIT 1) m), '定海区' , '0580' , '122.108496' , '30.016423' , '330902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330900' ORDER BY id ASC LIMIT 1) m), '普陀区' , '0580' , '122.301953' , '29.945614' , '330903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '嘉兴市' , '0573' , '120.750865' , '30.762653' , '330400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '平湖市' , '0573' , '121.014666' , '30.698921' , '330482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '南湖区' , '0573' , '120.749953' , '30.764652' , '330402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '嘉善县' , '0573' , '120.921871' , '30.841352' , '330421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '海盐县' , '0573' , '120.942017' , '30.522223' , '330424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '秀洲区' , '0573' , '120.720431' , '30.763323' , '330411' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '桐乡市' , '0573' , '120.551085' , '30.629065' , '330483' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330400' ORDER BY id ASC LIMIT 1) m), '海宁市' , '0573' , '120.688821' , '30.525544' , '330481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '温州市' , '0577' , '120.672111' , '28.000575' , '330300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '平阳县' , '0577' , '120.564387' , '27.6693' , '330326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '洞头区' , '0577' , '121.156181' , '27.836057' , '330305' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '苍南县' , '0577' , '120.406256' , '27.507743' , '330327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '龙港市' , '0577' , '120.553039' , '27.578156' , '330383' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '瑞安市' , '0577' , '120.646171' , '27.779321' , '330381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '泰顺县' , '0577' , '119.71624' , '27.557309' , '330329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '文成县' , '0577' , '120.09245' , '27.789133' , '330328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '永嘉县' , '0577' , '120.690968' , '28.153886' , '330324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '乐清市' , '0577' , '120.967147' , '28.116083' , '330382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '龙湾区' , '0577' , '120.763469' , '27.970254' , '330303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '鹿城区' , '0577' , '120.674231' , '28.003352' , '330302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330300' ORDER BY id ASC LIMIT 1) m), '瓯海区' , '0577' , '120.637145' , '28.006444' , '330304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '台州市' , '0576' , '121.428599' , '28.661378' , '331000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '临海市' , '0576' , '121.131229' , '28.845441' , '331082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '路桥区' , '0576' , '121.37292' , '28.581799' , '331004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '椒江区' , '0576' , '121.431049' , '28.67615' , '331002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '玉环市' , '0576' , '121.232337' , '28.12842' , '331083' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '温岭市' , '0576' , '121.373611' , '28.368781' , '331081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '三门县' , '0576' , '121.376429' , '29.118955' , '331022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '天台县' , '0576' , '121.031227' , '29.141126' , '331023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '黄岩区' , '0576' , '121.262138' , '28.64488' , '331003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331000' ORDER BY id ASC LIMIT 1) m), '仙居县' , '0576' , '120.735074' , '28.849213' , '331024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '宁波市' , '0574' , '121.549792' , '29.868388' , '330200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '北仑区' , '0574' , '121.831303' , '29.90944' , '330206' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '象山县' , '0574' , '121.877091' , '29.470206' , '330225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '镇海区' , '0574' , '121.713162' , '29.952107' , '330211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '江北区' , '0574' , '121.559282' , '29.888361' , '330205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '宁海县' , '0574' , '121.432606' , '29.299836' , '330226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '奉化区' , '0574' , '121.41089' , '29.662348' , '330213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '鄞州区' , '0574' , '121.558436' , '29.831662' , '330212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '海曙区' , '0574' , '121.539698' , '29.874452' , '330203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '慈溪市' , '0574' , '121.248052' , '30.177142' , '330282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330200' ORDER BY id ASC LIMIT 1) m), '余姚市' , '0574' , '121.156294' , '30.045404' , '330281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '丽水市' , '0578' , '119.921786' , '28.451993' , '331100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '龙泉市' , '0578' , '119.132319' , '28.069177' , '331181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '松阳县' , '0578' , '119.485292' , '28.449937' , '331124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '莲都区' , '0578' , '119.922293' , '28.451103' , '331102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '云和县' , '0578' , '119.569458' , '28.111077' , '331125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '景宁畲族自治县' , '0578' , '119.634669' , '27.977247' , '331127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '遂昌县' , '0578' , '119.27589' , '28.5924' , '331123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '缙云县' , '0578' , '120.078965' , '28.654208' , '331122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '庆元县' , '0578' , '119.067233' , '27.618231' , '331126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '331100' ORDER BY id ASC LIMIT 1) m), '青田县' , '0578' , '120.291939' , '28.135247' , '331121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '金华市' , '0579' , '119.649506' , '29.089524' , '330700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '永康市' , '0579' , '120.036328' , '28.895293' , '330784' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '武义县' , '0579' , '119.819159' , '28.896563' , '330723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '东阳市' , '0579' , '120.23334' , '29.262546' , '330783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '磐安县' , '0579' , '120.44513' , '29.052627' , '330727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '金东区' , '0579' , '119.681264' , '29.095835' , '330703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '义乌市' , '0579' , '120.074911' , '29.306863' , '330782' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '婺城区' , '0579' , '119.652579' , '29.082607' , '330702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '浦江县' , '0579' , '119.893363' , '29.451254' , '330726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330700' ORDER BY id ASC LIMIT 1) m), '兰溪市' , '0579' , '119.460521' , '29.210065' , '330781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '湖州市' , '0572' , '120.102398' , '30.867198' , '330500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330500' ORDER BY id ASC LIMIT 1) m), '长兴县' , '0572' , '119.910122' , '31.00475' , '330522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330500' ORDER BY id ASC LIMIT 1) m), '南浔区' , '0572' , '120.417195' , '30.872742' , '330503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330500' ORDER BY id ASC LIMIT 1) m), '吴兴区' , '0572' , '120.101416' , '30.867252' , '330502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330500' ORDER BY id ASC LIMIT 1) m), '安吉县' , '0572' , '119.687891' , '30.631974' , '330523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330500' ORDER BY id ASC LIMIT 1) m), '德清县' , '0572' , '119.967662' , '30.534927' , '330521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '绍兴市' , '0575' , '120.582112' , '29.997117' , '330600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '嵊州市' , '0575' , '120.82888' , '29.586606' , '330683' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '新昌县' , '0575' , '120.905665' , '29.501205' , '330624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '越城区' , '0575' , '120.585315' , '29.996993' , '330602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '诸暨市' , '0575' , '120.244326' , '29.713662' , '330681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '上虞区' , '0575' , '120.874185' , '30.016769' , '330604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330600' ORDER BY id ASC LIMIT 1) m), '柯桥区' , '0575' , '120.476075' , '30.078038' , '330603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '衢州市' , '0570' , '118.87263' , '28.941708' , '330800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '柯城区' , '0570' , '118.873041' , '28.944539' , '330802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '江山市' , '0570' , '118.627879' , '28.734674' , '330881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '衢江区' , '0570' , '118.957683' , '28.973195' , '330803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '常山县' , '0570' , '118.521654' , '28.900039' , '330822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '龙游县' , '0570' , '119.172525' , '29.031364' , '330825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330800' ORDER BY id ASC LIMIT 1) m), '开化县' , '0570' , '118.414435' , '29.136503' , '330824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330000' ORDER BY id ASC LIMIT 1) m), '杭州市' , '0571' , '120.153576' , '30.287459' , '330100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '桐庐县' , '0571' , '119.685045' , '29.797437' , '330122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '西湖区' , '0571' , '120.147376' , '30.272934' , '330106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '建德市' , '0571' , '119.279089' , '29.472284' , '330182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '滨江区' , '0571' , '120.21062' , '30.206615' , '330108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '淳安县' , '0571' , '119.044276' , '29.604177' , '330127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '富阳区' , '0571' , '119.949869' , '30.049871' , '330111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '萧山区' , '0571' , '120.27069' , '30.162932' , '330109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '上城区' , '0571' , '120.171465' , '30.250236' , '330102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '拱墅区' , '0571' , '120.150053' , '30.314697' , '330105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '钱塘区' , '0571' , '120.493972' , '30.322904' , '330113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '临安区' , '0571' , '119.715101' , '30.231153' , '330112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '临平区' , '0571' , '120.299376' , '30.419025' , '330114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '330100' ORDER BY id ASC LIMIT 1) m), '余杭区' , '0571' , '119.978959' , '30.27365' , '330110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '河北省' , '' , '114.502461' , '38.045474' , '130000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '唐山市' , '0315' , '118.175393' , '39.635113' , '130200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '滦州市' , '0315' , '118.699546' , '39.74485' , '130284' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '迁西县' , '0315' , '118.305139' , '40.146238' , '130227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '迁安市' , '0315' , '118.701933' , '40.012108' , '130283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '遵化市' , '0315' , '117.965875' , '40.188616' , '130281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '滦南县' , '0315' , '118.681552' , '39.506201' , '130224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '曹妃甸区' , '0315' , '118.446585' , '39.278277' , '130209' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '乐亭县' , '0315' , '118.905341' , '39.42813' , '130225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '玉田县' , '0315' , '117.753665' , '39.887323' , '130229' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '路南区' , '0315' , '118.210821' , '39.615162' , '130202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '开平区' , '0315' , '118.264425' , '39.676171' , '130205' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '古冶区' , '0315' , '118.45429' , '39.715736' , '130204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '路北区' , '0315' , '118.174736' , '39.628538' , '130203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '丰润区' , '0315' , '118.155779' , '39.831363' , '130208' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130200' ORDER BY id ASC LIMIT 1) m), '丰南区' , '0315' , '118.110793' , '39.56303' , '130207' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '廊坊市' , '0316' , '116.704441' , '39.523927' , '131000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '大厂回族自治县' , '0316' , '116.986501' , '39.889266' , '131028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '大城县' , '0316' , '116.640735' , '38.699215' , '131025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '固安县' , '0316' , '116.299894' , '39.436468' , '131022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '永清县' , '0316' , '116.498089' , '39.319717' , '131023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '香河县' , '0316' , '117.007161' , '39.757212' , '131024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '文安县' , '0316' , '116.460107' , '38.866801' , '131026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '安次区' , '0316' , '116.694544' , '39.502569' , '131002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '三河市' , '0316' , '117.077018' , '39.982778' , '131082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '广阳区' , '0316' , '116.713708' , '39.521931' , '131003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131000' ORDER BY id ASC LIMIT 1) m), '霸州市' , '0316' , '116.392021' , '39.117331' , '131081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '秦皇岛市' , '0335' , '119.586579' , '39.942531' , '130300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '青龙满族自治县' , '0335' , '118.954555' , '40.406023' , '130321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '山海关区' , '0335' , '119.753591' , '39.998023' , '130303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '卢龙县' , '0335' , '118.881809' , '39.891639' , '130324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '抚宁区' , '0335' , '119.240651' , '39.887053' , '130306' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '海港区' , '0335' , '119.596224' , '39.943458' , '130302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '北戴河区' , '0335' , '119.486286' , '39.825121' , '130304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130300' ORDER BY id ASC LIMIT 1) m), '昌黎县' , '0335' , '119.164541' , '39.709729' , '130322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '张家口市' , '0313' , '114.884091' , '40.811901' , '130700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '康保县' , '0313' , '114.615809' , '41.850046' , '130723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '沽源县' , '0313' , '115.684836' , '41.667419' , '130724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '万全区' , '0313' , '114.736131' , '40.765136' , '130708' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '赤城县' , '0313' , '115.832708' , '40.912081' , '130732' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '尚义县' , '0313' , '113.977713' , '41.080091' , '130725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '崇礼区' , '0313' , '115.281652' , '40.971302' , '130709' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '张北县' , '0313' , '114.715951' , '41.151713' , '130722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '下花园区' , '0313' , '115.281002' , '40.488645' , '130706' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '怀来县' , '0313' , '115.520846' , '40.405405' , '130730' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '涿鹿县' , '0313' , '115.219246' , '40.378701' , '130731' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '桥西区' , '0313' , '114.882127' , '40.824385' , '130703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '宣化区' , '0313' , '115.0632' , '40.609368' , '130705' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '桥东区' , '0313' , '114.885658' , '40.813875' , '130702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '怀安县' , '0313' , '114.422364' , '40.671274' , '130728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '蔚县' , '0313' , '114.582695' , '39.837181' , '130726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130700' ORDER BY id ASC LIMIT 1) m), '阳原县' , '0313' , '114.167343' , '40.113419' , '130727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '邯郸市' , '0310' , '114.490686' , '36.612273' , '130400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '肥乡区' , '0310' , '114.805154' , '36.555778' , '130407' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '魏县' , '0310' , '114.93411' , '36.354248' , '130434' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '涉县' , '0310' , '113.673297' , '36.563143' , '130426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '临漳县' , '0310' , '114.610703' , '36.337604' , '130423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '曲周县' , '0310' , '114.957588' , '36.773398' , '130435' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '鸡泽县' , '0310' , '114.878517' , '36.914908' , '130431' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '永年区' , '0310' , '114.496162' , '36.776413' , '130408' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '丛台区' , '0310' , '114.494703' , '36.611082' , '130403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '复兴区' , '0310' , '114.458242' , '36.615484' , '130404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '磁县' , '0310' , '114.38208' , '36.367673' , '130427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '成安县' , '0310' , '114.680356' , '36.443832' , '130424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '邯山区' , '0310' , '114.484989' , '36.603196' , '130402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '馆陶县' , '0310' , '115.289057' , '36.539461' , '130433' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '邱县' , '0310' , '115.168584' , '36.81325' , '130430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '广平县' , '0310' , '114.950859' , '36.483603' , '130432' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '大名县' , '0310' , '115.152586' , '36.283316' , '130425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '武安市' , '0310' , '114.194581' , '36.696115' , '130481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130400' ORDER BY id ASC LIMIT 1) m), '峰峰矿区' , '0310' , '114.209936' , '36.420487' , '130406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '石家庄市' , '0311' , '114.502461' , '38.045474' , '130100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '平山县' , '0311' , '114.184144' , '38.259311' , '130131' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '灵寿县' , '0311' , '114.37946' , '38.306546' , '130126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '正定县' , '0311' , '114.569887' , '38.147835' , '130123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '晋州市' , '0311' , '115.044886' , '38.027478' , '130183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '藁城区' , '0311' , '114.849647' , '38.033767' , '130109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '无极县' , '0311' , '114.977845' , '38.176376' , '130130' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '鹿泉区' , '0311' , '114.321023' , '38.093994' , '130110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '裕华区' , '0311' , '114.533257' , '38.027696' , '130108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '赞皇县' , '0311' , '114.387756' , '37.660199' , '130129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '高邑县' , '0311' , '114.610699' , '37.605714' , '130127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '元氏县' , '0311' , '114.52618' , '37.762514' , '130132' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '新乐市' , '0311' , '114.68578' , '38.344768' , '130184' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '辛集市' , '0311' , '115.217451' , '37.92904' , '130181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '新华区' , '0311' , '114.465974' , '38.067142' , '130105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '井陉矿区' , '0311' , '114.058178' , '38.069748' , '130107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '井陉县' , '0311' , '114.144488' , '38.033614' , '130121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '深泽县' , '0311' , '115.200207' , '38.18454' , '130128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '行唐县' , '0311' , '114.552734' , '38.437422' , '130125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '栾城区' , '0311' , '114.654281' , '37.886911' , '130111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '赵县' , '0311' , '114.775362' , '37.754341' , '130133' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '桥西区' , '0311' , '114.462931' , '38.028383' , '130104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130100' ORDER BY id ASC LIMIT 1) m), '长安区' , '0311' , '114.548151' , '38.047501' , '130102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '保定市' , '0312' , '115.482331' , '38.867657' , '130600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '涞源县' , '0312' , '114.692567' , '39.35755' , '130630' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '徐水区' , '0312' , '115.64941' , '39.020395' , '130609' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '顺平县' , '0312' , '115.132749' , '38.845127' , '130636' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '易县' , '0312' , '115.501146' , '39.35297' , '130633' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '安新县' , '0312' , '115.931979' , '38.929912' , '130632' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '高阳县' , '0312' , '115.778878' , '38.690092' , '130628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '竞秀区' , '0312' , '115.470659' , '38.88662' , '130602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '安国市' , '0312' , '115.33141' , '38.421367' , '130683' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '定州市' , '0312' , '114.991389' , '38.517602' , '130682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '莲池区' , '0312' , '115.500934' , '38.865005' , '130606' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '涞水县' , '0312' , '115.711985' , '39.393148' , '130623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '涿州市' , '0312' , '115.973409' , '39.485765' , '130681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '博野县' , '0312' , '115.461798' , '38.458271' , '130637' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '蠡县' , '0312' , '115.583631' , '38.496429' , '130635' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '阜平县' , '0312' , '114.198801' , '38.847276' , '130624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '望都县' , '0312' , '115.154009' , '38.707448' , '130631' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '唐县' , '0312' , '114.981241' , '38.748542' , '130627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '曲阳县' , '0312' , '114.704055' , '38.619992' , '130634' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '定兴县' , '0312' , '115.796895' , '39.266195' , '130626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '高碑店市' , '0312' , '115.882704' , '39.327689' , '130684' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '容城县' , '0312' , '115.866247' , '39.05282' , '130629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '雄县' , '0312' , '116.107474' , '38.990819' , '130638' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '清苑区' , '0312' , '115.492221' , '38.771012' , '130608' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130600' ORDER BY id ASC LIMIT 1) m), '满城区' , '0312' , '115.32442' , '38.95138' , '130607' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '承德市' , '0314' , '117.939152' , '40.976204' , '130800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '围场满族蒙古族自治县' , '0314' , '117.764086' , '41.949404' , '130828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '丰宁满族自治县' , '0314' , '116.65121' , '41.209903' , '130826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '宽城满族自治县' , '0314' , '118.488642' , '40.607981' , '130827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '隆化县' , '0314' , '117.736343' , '41.316667' , '130825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '鹰手营子矿区' , '0314' , '117.661154' , '40.546956' , '130804' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '兴隆县' , '0314' , '117.507098' , '40.418525' , '130822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '平泉市' , '0314' , '118.690238' , '41.00561' , '130881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '双滦区' , '0314' , '117.797485' , '40.959756' , '130803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '滦平县' , '0314' , '117.337124' , '40.936644' , '130824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '承德县' , '0314' , '118.172496' , '40.768637' , '130821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130800' ORDER BY id ASC LIMIT 1) m), '双桥区' , '0314' , '117.939152' , '40.976204' , '130802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '邢台市' , '0319' , '114.508851' , '37.0682' , '130500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '柏乡县' , '0319' , '114.693382' , '37.483596' , '130524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '南宫市' , '0319' , '115.398102' , '37.359668' , '130581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '临城县' , '0319' , '114.506873' , '37.444009' , '130522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '广宗县' , '0319' , '115.142797' , '37.075548' , '130531' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '内丘县' , '0319' , '114.511523' , '37.287663' , '130523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '平乡县' , '0319' , '115.029218' , '37.069404' , '130532' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '新河县' , '0319' , '115.247537' , '37.526216' , '130530' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '沙河市' , '0319' , '114.504902' , '36.861903' , '130582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '清河县' , '0319' , '115.668999' , '37.059991' , '130534' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '南和区' , '0319' , '114.691377' , '37.003812' , '130506' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '宁晋县' , '0319' , '114.921027' , '37.618956' , '130528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '任泽区' , '0319' , '114.684469' , '37.129952' , '130505' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '巨鹿县' , '0319' , '115.038782' , '37.21768' , '130529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '隆尧县' , '0319' , '114.776348' , '37.350925' , '130525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '信都区' , '0319' , '114.473687' , '37.068009' , '130503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '襄都区' , '0319' , '114.507131' , '37.064125' , '130502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '临西县' , '0319' , '115.498684' , '36.8642' , '130535' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130500' ORDER BY id ASC LIMIT 1) m), '威县' , '0319' , '115.272749' , '36.983272' , '130533' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '沧州市' , '0317' , '116.857461' , '38.310582' , '130900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '任丘市' , '0317' , '116.106764' , '38.706513' , '130982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '南皮县' , '0317' , '116.709171' , '38.042439' , '130927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '运河区' , '0317' , '116.840063' , '38.307405' , '130903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '献县' , '0317' , '116.123844' , '38.189661' , '130929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '海兴县' , '0317' , '117.496606' , '38.141582' , '130924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '东光县' , '0317' , '116.542062' , '37.88655' , '130923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '吴桥县' , '0317' , '116.391512' , '37.628182' , '130928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '黄骅市' , '0317' , '117.343803' , '38.369238' , '130983' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '青县' , '0317' , '116.838384' , '38.569646' , '130922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '肃宁县' , '0317' , '115.835856' , '38.427102' , '130926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '河间市' , '0317' , '116.089452' , '38.44149' , '130984' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '盐山县' , '0317' , '117.229814' , '38.056141' , '130925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '孟村回族自治县' , '0317' , '117.105104' , '38.057953' , '130930' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '新华区' , '0317' , '116.873049' , '38.308273' , '130902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '沧县' , '0317' , '117.007478' , '38.219856' , '130921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130900' ORDER BY id ASC LIMIT 1) m), '泊头市' , '0317' , '116.570163' , '38.073479' , '130981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '130000' ORDER BY id ASC LIMIT 1) m), '衡水市' , '0318' , '115.665993' , '37.735097' , '131100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '枣强县' , '0318' , '115.726499' , '37.511512' , '131121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '桃城区' , '0318' , '115.694945' , '37.732237' , '131102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '深州市' , '0318' , '115.554596' , '38.00347' , '131182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '安平县' , '0318' , '115.519627' , '38.233511' , '131125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '阜城县' , '0318' , '116.164727' , '37.869945' , '131128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '饶阳县' , '0318' , '115.726577' , '38.232671' , '131124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '冀州区' , '0318' , '115.579173' , '37.542788' , '131103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '景县' , '0318' , '116.258446' , '37.686622' , '131127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '故城县' , '0318' , '115.966747' , '37.350981' , '131126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '武邑县' , '0318' , '115.892415' , '37.803774' , '131122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '131100' ORDER BY id ASC LIMIT 1) m), '武强县' , '0318' , '115.970236' , '38.03698' , '131123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '香港特别行政区' , '1852' , '114.173355' , '22.320048' , '810000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '北区' , '1852' , '114.1473639' , '22.49610389' , '810013' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '大埔区' , '1852' , '114.1717431' , '22.44565306' , '810014' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '西贡区' , '1852' , '114.264645' , '22.31421306' , '810015' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '沙田区' , '1852' , '114.1953653' , '22.37953167' , '810016' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '屯门区' , '1852' , '113.9765742' , '22.39384417' , '810011' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '黄大仙区' , '1852' , '114.2038856' , '22.33632056' , '810008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '观塘区' , '1852' , '114.2140542' , '22.32083778' , '810009' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '九龙城区' , '1852' , '114.1928467' , '22.31251' , '810007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '深水埗区' , '1852' , '114.1632417' , '22.33385417' , '810006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '离岛区' , '1852' , '113.94612' , '22.28640778' , '810018' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '油尖旺区' , '1852' , '114.1733317' , '22.31170389' , '810005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '湾仔区' , '1852' , '114.1829153' , '22.27638889' , '810002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '中西区' , '1852' , '114.1543731' , '22.28198083' , '810001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '东区' , '1852' , '114.2260031' , '22.27969306' , '810003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '南区' , '1852' , '114.1600117' , '22.24589667' , '810004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '元朗区' , '1852' , '114.0324381' , '22.44142833' , '810012' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '葵青区' , '1852' , '114.1393194' , '22.36387667' , '810017' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '810000' ORDER BY id ASC LIMIT 1) m), '荃湾区' , '1852' , '114.1210792' , '22.36830667' , '810010' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '台湾省' , '1886' , '121.509062' , '25.044332' , '710000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '澳门特别行政区' , '1853' , '113.54909' , '22.198951' , '820000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '望德堂区' , '1853' , '113.5501828' , '22.19372083' , '820003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '花王堂区' , '1853' , '113.5489608' , '22.1992075' , '820002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '嘉模堂区' , '1853' , '113.5587044' , '22.15375944' , '820006' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '圣方济各堂区' , '1853' , '113.5599542' , '22.12348639' , '820008' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '花地玛堂区' , '1853' , '113.5528956' , '22.20787' , '820001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '大堂区' , '1853' , '113.5536475' , '22.18853944' , '820004' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '风顺堂区' , '1853' , '113.5419278' , '22.18736806' , '820005' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '820000' ORDER BY id ASC LIMIT 1) m), '路凼填海区' , '1853' , '113.5695992' , '22.13663' , '820007' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '甘肃省' , '' , '103.823557' , '36.058039' , '620000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '陇南市' , '2935' , '104.929379' , '33.388598' , '621200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '礼县' , '2935' , '105.181616' , '34.189387' , '621226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '宕昌县' , '2935' , '104.394475' , '34.042655' , '621223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '两当县' , '2935' , '106.306959' , '33.910729' , '621228' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '徽县' , '2935' , '106.085632' , '33.767785' , '621227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '武都区' , '2935' , '104.929866' , '33.388155' , '621202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '文县' , '2935' , '104.682448' , '32.942171' , '621222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '西和县' , '2935' , '105.299737' , '34.013718' , '621225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '成县' , '2935' , '105.734434' , '33.739863' , '621221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621200' ORDER BY id ASC LIMIT 1) m), '康县' , '2935' , '105.609534' , '33.328266' , '621224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '金昌市' , '0935' , '102.187888' , '38.514238' , '620300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620300' ORDER BY id ASC LIMIT 1) m), '金川区' , '0935' , '102.187683' , '38.513793' , '620302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620300' ORDER BY id ASC LIMIT 1) m), '永昌县' , '0935' , '101.971957' , '38.247354' , '620321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '兰州市' , '0931' , '103.823557' , '36.058039' , '620100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '皋兰县' , '0931' , '103.94933' , '36.331254' , '620122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '红古区' , '0931' , '102.861814' , '36.344177' , '620111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '西固区' , '0931' , '103.622331' , '36.100369' , '620104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '七里河区' , '0931' , '103.784326' , '36.06673' , '620103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '安宁区' , '0931' , '103.724038' , '36.10329' , '620105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '城关区' , '0931' , '103.841032' , '36.049115' , '620102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '榆中县' , '0931' , '104.114975' , '35.84443' , '620123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620100' ORDER BY id ASC LIMIT 1) m), '永登县' , '0931' , '103.262203' , '36.734428' , '620121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '白银市' , '0943' , '104.173606' , '36.54568' , '620400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620400' ORDER BY id ASC LIMIT 1) m), '白银区' , '0943' , '104.17425' , '36.545649' , '620402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620400' ORDER BY id ASC LIMIT 1) m), '平川区' , '0943' , '104.819207' , '36.72921' , '620403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620400' ORDER BY id ASC LIMIT 1) m), '靖远县' , '0943' , '104.686972' , '36.561424' , '620421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620400' ORDER BY id ASC LIMIT 1) m), '会宁县' , '0943' , '105.054337' , '35.692486' , '620422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620400' ORDER BY id ASC LIMIT 1) m), '景泰县' , '0943' , '104.066394' , '37.193519' , '620423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '平凉市' , '0933' , '106.684691' , '35.54279' , '620800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '灵台县' , '0933' , '107.620587' , '35.064009' , '620822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '崆峒区' , '0933' , '106.684223' , '35.54173' , '620802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '庄浪县' , '0933' , '106.041979' , '35.203428' , '620825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '崇信县' , '0933' , '107.031253' , '35.304533' , '620823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '静宁县' , '0933' , '105.733489' , '35.525243' , '620826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '华亭市' , '0933' , '106.649308' , '35.215341' , '620881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620800' ORDER BY id ASC LIMIT 1) m), '泾川县' , '0933' , '107.365218' , '35.335283' , '620821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '酒泉市' , '0937' , '98.510795' , '39.744023' , '620900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '肃北蒙古族自治县' , '0937' , '94.87728' , '39.51224' , '620923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '肃州区' , '0937' , '98.511155' , '39.743858' , '620902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '玉门市' , '0937' , '97.037206' , '40.28682' , '620981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '金塔县' , '0937' , '98.902959' , '39.983036' , '620921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '敦煌市' , '0937' , '94.664279' , '40.141119' , '620982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '瓜州县' , '0937' , '95.780591' , '40.516525' , '620922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620900' ORDER BY id ASC LIMIT 1) m), '阿克塞哈萨克族自治县' , '0937' , '94.337642' , '39.631642' , '620924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '嘉峪关市' , '1937' , '98.277304' , '39.786529' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620200' ORDER BY id ASC LIMIT 1) m), '峪泉镇' , '1937' , '98.3204' , '39.9583' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620200' ORDER BY id ASC LIMIT 1) m), '新城镇' , '1937' , '98.3627' , '39.9581' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620200' ORDER BY id ASC LIMIT 1) m), '文殊镇' , '1937' , '98.1579' , '39.6969' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620200' ORDER BY id ASC LIMIT 1) m), '雄关街道' , '1937' , '98.2391' , '39.893' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620200' ORDER BY id ASC LIMIT 1) m), '钢城街道' , '1937' , '98.2926' , '39.7558' , '620200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '张掖市' , '0936' , '100.455472' , '38.932897' , '620700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '肃南裕固族自治县' , '0936' , '99.617086' , '38.837269' , '620721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '高台县' , '0936' , '99.81665' , '39.376308' , '620724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '山丹县' , '0936' , '101.088442' , '38.784839' , '620725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '民乐县' , '0936' , '100.816623' , '38.434454' , '620722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '甘州区' , '0936' , '100.454862' , '38.931774' , '620702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620700' ORDER BY id ASC LIMIT 1) m), '临泽县' , '0936' , '100.166333' , '39.152151' , '620723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '甘南藏族自治州' , '0941' , '102.911008' , '34.986354' , '623000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '迭部县' , '0941' , '103.221009' , '34.055348' , '623024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '卓尼县' , '0941' , '103.508508' , '34.588165' , '623022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '夏河县' , '0941' , '102.520743' , '35.200853' , '623027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '合作市' , '0941' , '102.91149' , '34.985973' , '623001' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '玛曲县' , '0941' , '102.075767' , '33.998068' , '623025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '临潭县' , '0941' , '103.353054' , '34.69164' , '623021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '碌曲县' , '0941' , '102.488495' , '34.589591' , '623026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '623000' ORDER BY id ASC LIMIT 1) m), '舟曲县' , '0941' , '104.370271' , '33.782964' , '623023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '临夏回族自治州' , '0930' , '103.212006' , '35.599446' , '622900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '永靖县' , '0930' , '103.319871' , '35.938933' , '622923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '积石山保安族东乡族撒拉族自治县' , '0930' , '102.877473' , '35.712906' , '622927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '东乡族自治县' , '0930' , '103.389568' , '35.66383' , '622926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '临夏县' , '0930' , '102.993873' , '35.49236' , '622921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '临夏市' , '0930' , '103.211634' , '35.59941' , '622901' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '广河县' , '0930' , '103.576188' , '35.481688' , '622924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '和政县' , '0930' , '103.350357' , '35.425971' , '622925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '622900' ORDER BY id ASC LIMIT 1) m), '康乐县' , '0930' , '103.709852' , '35.371906' , '622922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '定西市' , '0932' , '104.626294' , '35.579578' , '621100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '临洮县' , '0932' , '103.862186' , '35.376233' , '621124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '渭源县' , '0932' , '104.211742' , '35.133023' , '621123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '岷县' , '0932' , '104.039882' , '34.439105' , '621126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '漳县' , '0932' , '104.466756' , '34.848642' , '621125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '安定区' , '0932' , '104.62577' , '35.579764' , '621102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '通渭县' , '0932' , '105.250102' , '35.208922' , '621121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621100' ORDER BY id ASC LIMIT 1) m), '陇西县' , '0932' , '104.637554' , '35.003409' , '621122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '天水市' , '0938' , '105.724998' , '34.578529' , '620500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '甘谷县' , '0938' , '105.332347' , '34.747327' , '620523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '秦安县' , '0938' , '105.6733' , '34.862354' , '620522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '秦州区' , '0938' , '105.724477' , '34.578645' , '620502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '麦积区' , '0938' , '105.897631' , '34.563504' , '620503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '武山县' , '0938' , '104.891696' , '34.721955' , '620524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '清水县' , '0938' , '106.139878' , '34.75287' , '620521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620500' ORDER BY id ASC LIMIT 1) m), '张家川回族自治县' , '0938' , '106.212416' , '34.993237' , '620525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '庆阳市' , '0934' , '107.638372' , '35.734218' , '621000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '正宁县' , '0934' , '108.361068' , '35.490642' , '621025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '环县' , '0934' , '107.308754' , '36.569322' , '621022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '镇原县' , '0934' , '107.195706' , '35.677806' , '621027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '华池县' , '0934' , '107.986288' , '36.457304' , '621023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '宁县' , '0934' , '107.921182' , '35.50201' , '621026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '合水县' , '0934' , '108.019865' , '35.819005' , '621024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '庆城县' , '0934' , '107.885664' , '36.013504' , '621021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '621000' ORDER BY id ASC LIMIT 1) m), '西峰区' , '0934' , '107.638824' , '35.733713' , '621002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620000' ORDER BY id ASC LIMIT 1) m), '武威市' , '1935' , '102.634697' , '37.929996' , '620600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620600' ORDER BY id ASC LIMIT 1) m), '凉州区' , '1935' , '102.634492' , '37.93025' , '620602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620600' ORDER BY id ASC LIMIT 1) m), '古浪县' , '1935' , '102.898047' , '37.470571' , '620622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620600' ORDER BY id ASC LIMIT 1) m), '民勤县' , '1935' , '103.090654' , '38.624621' , '620621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '620600' ORDER BY id ASC LIMIT 1) m), '天祝藏族自治县' , '1935' , '103.142034' , '36.971678' , '620623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '四川省' , '' , '104.065735' , '30.659462' , '510000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '广元市' , '0839' , '105.829757' , '32.433668' , '510800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '昭化区' , '0839' , '105.964121' , '32.322788' , '510811' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '朝天区' , '0839' , '105.88917' , '32.642632' , '510812' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '苍溪县' , '0839' , '105.939706' , '31.732251' , '510824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '剑阁县' , '0839' , '105.527035' , '32.286517' , '510823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '青川县' , '0839' , '105.238847' , '32.585655' , '510822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '旺苍县' , '0839' , '106.290426' , '32.22833' , '510821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510800' ORDER BY id ASC LIMIT 1) m), '利州区' , '0839' , '105.826194' , '32.432276' , '510802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '南充市' , '0817' , '106.082974' , '30.795281' , '511300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '南部县' , '0817' , '106.061138' , '31.349407' , '511321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '西充县' , '0817' , '105.893021' , '30.994616' , '511325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '营山县' , '0817' , '106.564893' , '31.075907' , '511322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '嘉陵区' , '0817' , '106.067027' , '30.762976' , '511304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '蓬安县' , '0817' , '106.413488' , '31.027978' , '511323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '仪陇县' , '0817' , '106.297083' , '31.271261' , '511324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '高坪区' , '0817' , '106.108996' , '30.781809' , '511303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '顺庆区' , '0817' , '106.084091' , '30.795572' , '511302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511300' ORDER BY id ASC LIMIT 1) m), '阆中市' , '0817' , '105.975266' , '31.580466' , '511381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '德阳市' , '0838' , '104.398651' , '31.127991' , '510600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '旌阳区' , '0838' , '104.389648' , '31.130428' , '510603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '广汉市' , '0838' , '104.281903' , '30.97715' , '510681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '中江县' , '0838' , '104.677831' , '31.03681' , '510623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '什邡市' , '0838' , '104.173653' , '31.126881' , '510682' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '罗江区' , '0838' , '104.507126' , '31.303281' , '510604' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510600' ORDER BY id ASC LIMIT 1) m), '绵竹市' , '0838' , '104.200162' , '31.343084' , '510683' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '巴中市' , '0827' , '106.753669' , '31.858809' , '511900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511900' ORDER BY id ASC LIMIT 1) m), '巴州区' , '0827' , '106.753671' , '31.858366' , '511902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511900' ORDER BY id ASC LIMIT 1) m), '南江县' , '0827' , '106.843418' , '32.353164' , '511922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511900' ORDER BY id ASC LIMIT 1) m), '通江县' , '0827' , '107.247621' , '31.91212' , '511921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511900' ORDER BY id ASC LIMIT 1) m), '平昌县' , '0827' , '107.101937' , '31.562814' , '511923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511900' ORDER BY id ASC LIMIT 1) m), '恩阳区' , '0827' , '106.486515' , '31.816336' , '511903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '绵阳市' , '0816' , '104.741722' , '31.46402' , '510700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '江油市' , '0816' , '104.744431' , '31.776386' , '510781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '游仙区' , '0816' , '104.770006' , '31.484772' , '510704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '梓潼县' , '0816' , '105.16353' , '31.635225' , '510725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '三台县' , '0816' , '105.090316' , '31.090909' , '510722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '安州区' , '0816' , '104.560341' , '31.53894' , '510705' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '涪城区' , '0816' , '104.740971' , '31.463557' , '510703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '盐亭县' , '0816' , '105.391991' , '31.22318' , '510723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '平武县' , '0816' , '104.530555' , '32.407588' , '510727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510700' ORDER BY id ASC LIMIT 1) m), '北川羌族自治县' , '0816' , '104.468069' , '31.615863' , '510726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '成都市' , '028' , '104.065735' , '30.659462' , '510100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '崇州市' , '028' , '103.671049' , '30.631478' , '510184' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '都江堰市' , '028' , '103.627898' , '30.99114' , '510181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '青白江区' , '028' , '104.25494' , '30.883438' , '510113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '大邑县' , '028' , '103.522397' , '30.586602' , '510129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '彭州市' , '028' , '103.941173' , '30.985161' , '510182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '简阳市' , '028' , '104.550339' , '30.390666' , '510185' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '蒲江县' , '028' , '103.511541' , '30.194359' , '510131' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '新津区' , '028' , '103.812449' , '30.414284' , '510118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '邛崃市' , '028' , '103.46143' , '30.413271' , '510183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '金堂县' , '028' , '104.415604' , '30.858417' , '510121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '温江区' , '028' , '103.836776' , '30.697996' , '510115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '武侯区' , '028' , '104.05167' , '30.630862' , '510107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '双流区' , '028' , '103.922706' , '30.573243' , '510116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '新都区' , '028' , '104.16022' , '30.824223' , '510114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '龙泉驿区' , '028' , '104.269181' , '30.56065' , '510112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '成华区' , '028' , '104.103077' , '30.660275' , '510108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '锦江区' , '028' , '104.080989' , '30.657689' , '510104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '青羊区' , '028' , '104.055731' , '30.667648' , '510105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '金牛区' , '028' , '104.043487' , '30.692058' , '510106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510100' ORDER BY id ASC LIMIT 1) m), '郫都区' , '028' , '103.887842' , '30.808752' , '510117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '资阳市' , '0832' , '104.641917' , '30.122211' , '512000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '512000' ORDER BY id ASC LIMIT 1) m), '乐至县' , '0832' , '105.031142' , '30.275619' , '512022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '512000' ORDER BY id ASC LIMIT 1) m), '雁江区' , '0832' , '104.642338' , '30.121686' , '512002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '512000' ORDER BY id ASC LIMIT 1) m), '安岳县' , '0832' , '105.336764' , '30.099206' , '512021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '广安市' , '0826' , '106.633369' , '30.456398' , '511600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '邻水县' , '0826' , '106.934968' , '30.334323' , '511623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '武胜县' , '0826' , '106.292473' , '30.344291' , '511622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '广安区' , '0826' , '106.632907' , '30.456462' , '511602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '前锋区' , '0826' , '106.893277' , '30.4963' , '511603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '华蓥市' , '0826' , '106.777882' , '30.380574' , '511681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511600' ORDER BY id ASC LIMIT 1) m), '岳池县' , '0826' , '106.444451' , '30.533538' , '511621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '达州市' , '0818' , '107.502262' , '31.209484' , '511700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '大竹县' , '0818' , '107.20742' , '30.736289' , '511724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '万源市' , '0818' , '108.037548' , '32.06777' , '511781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '宣汉县' , '0818' , '107.722254' , '31.355025' , '511722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '渠县' , '0818' , '106.970746' , '30.836348' , '511725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '开江县' , '0818' , '107.864135' , '31.085537' , '511723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '通川区' , '0818' , '107.501062' , '31.213522' , '511702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511700' ORDER BY id ASC LIMIT 1) m), '达川区' , '0818' , '107.507926' , '31.199062' , '511703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '眉山市' , '1833' , '103.831788' , '30.048318' , '511400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '丹棱县' , '1833' , '103.518333' , '30.012751' , '511424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '洪雅县' , '1833' , '103.375006' , '29.904867' , '511423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '仁寿县' , '1833' , '104.147646' , '29.996721' , '511421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '青神县' , '1833' , '103.846131' , '29.831469' , '511425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '东坡区' , '1833' , '103.831553' , '30.048128' , '511402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511400' ORDER BY id ASC LIMIT 1) m), '彭山区' , '1833' , '103.8701' , '30.192298' , '511403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '遂宁市' , '0825' , '105.571331' , '30.513311' , '510900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510900' ORDER BY id ASC LIMIT 1) m), '射洪市' , '0825' , '105.381849' , '30.868752' , '510981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510900' ORDER BY id ASC LIMIT 1) m), '大英县' , '0825' , '105.252187' , '30.581571' , '510923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510900' ORDER BY id ASC LIMIT 1) m), '蓬溪县' , '0825' , '105.713699' , '30.774883' , '510921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510900' ORDER BY id ASC LIMIT 1) m), '船山区' , '0825' , '105.582215' , '30.502647' , '510903' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510900' ORDER BY id ASC LIMIT 1) m), '安居区' , '0825' , '105.459383' , '30.346121' , '510904' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '内江市' , '1832' , '105.066138' , '29.58708' , '511000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511000' ORDER BY id ASC LIMIT 1) m), '资中县' , '1832' , '104.852463' , '29.775295' , '511025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511000' ORDER BY id ASC LIMIT 1) m), '威远县' , '1832' , '104.668327' , '29.52686' , '511024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511000' ORDER BY id ASC LIMIT 1) m), '东兴区' , '1832' , '105.067203' , '29.600107' , '511011' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511000' ORDER BY id ASC LIMIT 1) m), '隆昌市' , '1832' , '105.288074' , '29.338162' , '511083' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511000' ORDER BY id ASC LIMIT 1) m), '市中区' , '1832' , '105.065467' , '29.585265' , '511002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '乐山市' , '0833' , '103.761263' , '29.582024' , '511100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '井研县' , '0833' , '104.06885' , '29.651645' , '511124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '金口河区' , '0833' , '103.077831' , '29.24602' , '511113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '五通桥区' , '0833' , '103.816837' , '29.406186' , '511112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '夹江县' , '0833' , '103.578862' , '29.741019' , '511126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '沙湾区' , '0833' , '103.549961' , '29.416536' , '511111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '犍为县' , '0833' , '103.944266' , '29.209782' , '511123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '沐川县' , '0833' , '103.90211' , '28.956338' , '511129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '峨边彝族自治县' , '0833' , '103.262148' , '29.230271' , '511132' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '马边彝族自治县' , '0833' , '103.546851' , '28.838933' , '511133' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '市中区' , '0833' , '103.75539' , '29.588327' , '511102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511100' ORDER BY id ASC LIMIT 1) m), '峨眉山市' , '0833' , '103.492488' , '29.597478' , '511181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '宜宾市' , '0831' , '104.630825' , '28.760189' , '511500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '高县' , '0831' , '104.519187' , '28.435676' , '511525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '珙县' , '0831' , '104.712268' , '28.449041' , '511526' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '南溪区' , '0831' , '104.981133' , '28.839806' , '511503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '兴文县' , '0831' , '105.236549' , '28.302988' , '511528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '翠屏区' , '0831' , '104.630231' , '28.760179' , '511502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '长宁县' , '0831' , '104.921116' , '28.577271' , '511524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '筠连县' , '0831' , '104.507848' , '28.162017' , '511527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '屏山县' , '0831' , '104.162617' , '28.64237' , '511529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '江安县' , '0831' , '105.068697' , '28.728102' , '511523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511500' ORDER BY id ASC LIMIT 1) m), '叙州区' , '0831' , '104.541489' , '28.695678' , '511504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '阿坝藏族羌族自治州' , '0837' , '102.221374' , '31.899792' , '513200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '九寨沟县' , '0837' , '104.236344' , '33.262097' , '513225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '马尔康市' , '0837' , '102.221187' , '31.899761' , '513201' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '黑水县' , '0837' , '102.990805' , '32.061721' , '513228' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '若尔盖县' , '0837' , '102.963726' , '33.575934' , '513232' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '汶川县' , '0837' , '103.580675' , '31.47463' , '513221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '红原县' , '0837' , '102.544906' , '32.793902' , '513233' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '金川县' , '0837' , '102.064647' , '31.476356' , '513226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '阿坝县' , '0837' , '101.700985' , '32.904223' , '513231' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '理县' , '0837' , '103.165486' , '31.436764' , '513222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '茂县' , '0837' , '103.850684' , '31.680407' , '513223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '小金县' , '0837' , '102.363193' , '30.999016' , '513227' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '松潘县' , '0837' , '103.599177' , '32.63838' , '513224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513200' ORDER BY id ASC LIMIT 1) m), '壤塘县' , '0837' , '100.979136' , '32.264887' , '513230' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '攀枝花市' , '0812' , '101.716007' , '26.580446' , '510400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510400' ORDER BY id ASC LIMIT 1) m), '米易县' , '0812' , '102.109877' , '26.887474' , '510421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510400' ORDER BY id ASC LIMIT 1) m), '盐边县' , '0812' , '101.851848' , '26.677619' , '510422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510400' ORDER BY id ASC LIMIT 1) m), '西区' , '0812' , '101.637969' , '26.596776' , '510403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510400' ORDER BY id ASC LIMIT 1) m), '仁和区' , '0812' , '101.737916' , '26.497185' , '510411' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510400' ORDER BY id ASC LIMIT 1) m), '东区' , '0812' , '101.715134' , '26.580887' , '510402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '自贡市' , '0813' , '104.773447' , '29.352765' , '510300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '大安区' , '0813' , '104.783229' , '29.367136' , '510304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '富顺县' , '0813' , '104.984256' , '29.181282' , '510322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '荣县' , '0813' , '104.423932' , '29.454851' , '510321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '沿滩区' , '0813' , '104.876417' , '29.272521' , '510311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '贡井区' , '0813' , '104.714372' , '29.345675' , '510303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510300' ORDER BY id ASC LIMIT 1) m), '自流井区' , '0813' , '104.778188' , '29.343231' , '510302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '泸州市' , '0830' , '105.443348' , '28.889138' , '510500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '龙马潭区' , '0830' , '105.435228' , '28.897572' , '510504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '古蔺县' , '0830' , '105.813359' , '28.03948' , '510525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '泸县' , '0830' , '105.376335' , '29.151288' , '510521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '纳溪区' , '0830' , '105.37721' , '28.77631' , '510503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '叙永县' , '0830' , '105.437775' , '28.167919' , '510524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '江阳区' , '0830' , '105.445131' , '28.882889' , '510502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510500' ORDER BY id ASC LIMIT 1) m), '合江县' , '0830' , '105.834098' , '28.810325' , '510522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '雅安市' , '0835' , '103.001033' , '29.987722' , '511800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '宝兴县' , '0835' , '102.813377' , '30.369026' , '511827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '芦山县' , '0835' , '102.924016' , '30.152907' , '511826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '天全县' , '0835' , '102.763462' , '30.059955' , '511825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '汉源县' , '0835' , '102.677145' , '29.349915' , '511823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '雨城区' , '0835' , '103.003398' , '29.981831' , '511802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '石棉县' , '0835' , '102.35962' , '29.234063' , '511824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '荥经县' , '0835' , '102.844674' , '29.795529' , '511822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '511800' ORDER BY id ASC LIMIT 1) m), '名山区' , '0835' , '103.112214' , '30.084718' , '511803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '凉山彝族自治州' , '0834' , '102.258746' , '27.886762' , '513400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '冕宁县' , '0834' , '102.170046' , '28.550844' , '513433' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '雷波县' , '0834' , '103.571584' , '28.262946' , '513437' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '木里藏族自治县' , '0834' , '101.280184' , '27.926859' , '513422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '普格县' , '0834' , '102.541082' , '27.376828' , '513428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '盐源县' , '0834' , '101.508909' , '27.423415' , '513423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '会东县' , '0834' , '102.578985' , '26.630713' , '513426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '越西县' , '0834' , '102.508875' , '28.639632' , '513434' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '金阳县' , '0834' , '103.248704' , '27.695916' , '513430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '美姑县' , '0834' , '103.132007' , '28.327946' , '513436' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '布拖县' , '0834' , '102.808801' , '27.709062' , '513429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '会理市' , '0834' , '102.249548' , '26.658702' , '513425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '德昌县' , '0834' , '102.178845' , '27.403827' , '513424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '喜德县' , '0834' , '102.412342' , '28.305486' , '513432' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '甘洛县' , '0834' , '102.775924' , '28.977094' , '513435' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '宁南县' , '0834' , '102.757374' , '27.065205' , '513427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '昭觉县' , '0834' , '102.843991' , '28.010554' , '513431' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513400' ORDER BY id ASC LIMIT 1) m), '西昌市' , '0834' , '102.258758' , '27.885786' , '513401' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '510000' ORDER BY id ASC LIMIT 1) m), '甘孜藏族自治州' , '0836' , '101.963815' , '30.050663' , '513300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '石渠县' , '0836' , '98.100887' , '32.975302' , '513332' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '德格县' , '0836' , '98.57999' , '31.806729' , '513330' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '甘孜县' , '0836' , '99.991753' , '31.61975' , '513328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '雅江县' , '0836' , '101.015735' , '30.03225' , '513325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '新龙县' , '0836' , '100.312094' , '30.93896' , '513329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '道孚县' , '0836' , '101.123327' , '30.978767' , '513326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '炉霍县' , '0836' , '100.679495' , '31.392674' , '513327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '康定市' , '0836' , '101.964057' , '30.050738' , '513301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '白玉县' , '0836' , '98.824343' , '31.208805' , '513331' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '理塘县' , '0836' , '100.269862' , '29.991807' , '513334' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '巴塘县' , '0836' , '99.109037' , '30.005723' , '513335' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '稻城县' , '0836' , '100.296689' , '29.037544' , '513337' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '乡城县' , '0836' , '99.799943' , '28.930855' , '513336' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '九龙县' , '0836' , '101.506942' , '29.001975' , '513324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '丹巴县' , '0836' , '101.886125' , '30.877083' , '513323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '得荣县' , '0836' , '99.288036' , '28.71134' , '513338' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '色达县' , '0836' , '100.331657' , '32.268777' , '513333' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '513300' ORDER BY id ASC LIMIT 1) m), '泸定县' , '0836' , '102.233225' , '29.912482' , '513322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '天津市' , '022' , '117.190182' , '39.125596' , '120000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120000' ORDER BY id ASC LIMIT 1) m), '天津城区' , '022' , '117.190182' , '39.125596' , '120100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '河北区' , '022' , '117.201569' , '39.156632' , '120105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '和平区' , '022' , '117.195907' , '39.118327' , '120101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '宝坻区' , '022' , '117.308094' , '39.716965' , '120115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '静海区' , '022' , '116.925304' , '38.935671' , '120118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '蓟州区' , '022' , '117.407449' , '40.045342' , '120119' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '滨海新区' , '022' , '117.654173' , '39.032846' , '120116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '武清区' , '022' , '117.057959' , '39.376925' , '120114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '南开区' , '022' , '117.164143' , '39.120474' , '120104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '宁河区' , '022' , '117.82828' , '39.328886' , '120117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '红桥区' , '022' , '117.163301' , '39.175066' , '120106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '西青区' , '022' , '117.012247' , '39.139446' , '120111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '津南区' , '022' , '117.382549' , '38.989577' , '120112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '河西区' , '022' , '117.217536' , '39.101897' , '120103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '河东区' , '022' , '117.226568' , '39.122125' , '120102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '北辰区' , '022' , '117.13482' , '39.225555' , '120113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '120100' ORDER BY id ASC LIMIT 1) m), '东丽区' , '022' , '117.313967' , '39.087764' , '120110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '云南省' , '' , '102.712251' , '25.040609' , '530000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '曲靖市' , '0874' , '103.797851' , '25.501557' , '530300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '会泽县' , '0874' , '103.300041' , '26.412861' , '530326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '马龙区' , '0874' , '103.578755' , '25.429451' , '530304' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '罗平县' , '0874' , '104.309263' , '24.885708' , '530324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '陆良县' , '0874' , '103.655233' , '25.022878' , '530322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '师宗县' , '0874' , '103.993808' , '24.825681' , '530323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '宣威市' , '0874' , '104.09554' , '26.227777' , '530381' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '富源县' , '0874' , '104.25692' , '25.67064' , '530325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '沾益区' , '0874' , '103.819262' , '25.600878' , '530303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530300' ORDER BY id ASC LIMIT 1) m), '麒麟区' , '0874' , '103.798054' , '25.501269' , '530302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '昭通市' , '0870' , '103.717216' , '27.336999' , '530600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '绥江县' , '0870' , '103.961095' , '28.599953' , '530626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '永善县' , '0870' , '103.63732' , '28.231526' , '530625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '大关县' , '0870' , '103.891608' , '27.747114' , '530624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '威信县' , '0870' , '105.04869' , '27.843381' , '530629' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '水富市' , '0870' , '104.415376' , '28.629688' , '530681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '巧家县' , '0870' , '102.929284' , '26.9117' , '530622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '昭阳区' , '0870' , '103.717267' , '27.336636' , '530602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '镇雄县' , '0870' , '104.873055' , '27.436267' , '530627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '鲁甸县' , '0870' , '103.549333' , '27.191637' , '530621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '盐津县' , '0870' , '104.23506' , '28.106923' , '530623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530600' ORDER BY id ASC LIMIT 1) m), '彝良县' , '0870' , '104.048492' , '27.627425' , '530628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '红河哈尼族彝族自治州' , '0873' , '103.384182' , '23.366775' , '532500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '泸西县' , '0873' , '103.759622' , '24.532368' , '532527' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '弥勒市' , '0873' , '103.436988' , '24.40837' , '532504' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '石屏县' , '0873' , '102.484469' , '23.712569' , '532525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '建水县' , '0873' , '102.820493' , '23.618387' , '532524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '开远市' , '0873' , '103.258679' , '23.713832' , '532502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '蒙自市' , '0873' , '103.385005' , '23.366843' , '532503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '个旧市' , '0873' , '103.154752' , '23.360383' , '532501' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '屏边苗族自治县' , '0873' , '103.687229' , '22.987013' , '532523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '绿春县' , '0873' , '102.39286' , '22.99352' , '532531' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '元阳县' , '0873' , '102.837056' , '23.219773' , '532528' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '红河县' , '0873' , '102.42121' , '23.369191' , '532529' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '金平苗族瑶族傣族自治县' , '0873' , '103.228359' , '22.779982' , '532530' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532500' ORDER BY id ASC LIMIT 1) m), '河口瑶族自治县' , '0873' , '103.961593' , '22.507563' , '532532' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '西双版纳傣族自治州' , '0691' , '100.797941' , '22.001724' , '532800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532800' ORDER BY id ASC LIMIT 1) m), '景洪市' , '0691' , '100.797947' , '22.002087' , '532801' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532800' ORDER BY id ASC LIMIT 1) m), '勐腊县' , '0691' , '101.567051' , '21.479449' , '532823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532800' ORDER BY id ASC LIMIT 1) m), '勐海县' , '0691' , '100.448288' , '21.955866' , '532822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '玉溪市' , '0877' , '102.543907' , '24.350461' , '530400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '易门县' , '0877' , '102.16211' , '24.669598' , '530425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '红塔区' , '0877' , '102.543468' , '24.350753' , '530402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '江川区' , '0877' , '102.749839' , '24.291006' , '530403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '新平彝族傣族自治县' , '0877' , '101.990903' , '24.0664' , '530427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '峨山彝族自治县' , '0877' , '102.404358' , '24.173256' , '530426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '华宁县' , '0877' , '102.928982' , '24.189807' , '530424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '通海县' , '0877' , '102.760039' , '24.112205' , '530423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '元江哈尼族彝族傣族自治县' , '0877' , '101.999658' , '23.597618' , '530428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530400' ORDER BY id ASC LIMIT 1) m), '澄江市' , '0877' , '102.916652' , '24.669679' , '530481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '怒江傈僳族自治州' , '0886' , '98.854304' , '25.850949' , '533300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533300' ORDER BY id ASC LIMIT 1) m), '贡山独龙族怒族自治县' , '0886' , '98.666141' , '27.738054' , '533324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533300' ORDER BY id ASC LIMIT 1) m), '福贡县' , '0886' , '98.867413' , '26.902738' , '533323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533300' ORDER BY id ASC LIMIT 1) m), '兰坪白族普米族自治县' , '0886' , '99.421378' , '26.453839' , '533325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533300' ORDER BY id ASC LIMIT 1) m), '泸水市' , '0886' , '98.854063' , '25.851142' , '533301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '大理白族自治州' , '0872' , '100.225668' , '25.589449' , '532900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '鹤庆县' , '0872' , '100.173375' , '26.55839' , '532932' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '剑川县' , '0872' , '99.905887' , '26.530066' , '532931' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '大理市' , '0872' , '100.241369' , '25.593067' , '532901' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '宾川县' , '0872' , '100.578957' , '25.825904' , '532924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '祥云县' , '0872' , '100.554025' , '25.477072' , '532923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '洱源县' , '0872' , '99.951708' , '26.111184' , '532930' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '云龙县' , '0872' , '99.369402' , '25.884955' , '532929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '漾濞彝族自治县' , '0872' , '99.95797' , '25.669543' , '532922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '永平县' , '0872' , '99.533536' , '25.461281' , '532928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '巍山彝族回族自治县' , '0872' , '100.30793' , '25.230909' , '532927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '弥渡县' , '0872' , '100.490669' , '25.342594' , '532925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532900' ORDER BY id ASC LIMIT 1) m), '南涧彝族自治县' , '0872' , '100.518683' , '25.041279' , '532926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '迪庆藏族自治州' , '0887' , '99.706463' , '27.826853' , '533400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533400' ORDER BY id ASC LIMIT 1) m), '德钦县' , '0887' , '98.91506' , '28.483272' , '533422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533400' ORDER BY id ASC LIMIT 1) m), '香格里拉市' , '0887' , '99.708667' , '27.825804' , '533401' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533400' ORDER BY id ASC LIMIT 1) m), '维西傈僳族自治县' , '0887' , '99.286355' , '27.180948' , '533423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '楚雄彝族自治州' , '0878' , '101.546046' , '25.041988' , '532300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '大姚县' , '0878' , '101.323602' , '25.722348' , '532326' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '元谋县' , '0878' , '101.870837' , '25.703313' , '532328' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '牟定县' , '0878' , '101.543044' , '25.312111' , '532323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '禄丰市' , '0878' , '102.075694' , '25.14327' , '532331' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '姚安县' , '0878' , '101.238399' , '25.505403' , '532325' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '楚雄市' , '0878' , '101.546145' , '25.040912' , '532301' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '南华县' , '0878' , '101.274991' , '25.192408' , '532324' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '双柏县' , '0878' , '101.63824' , '24.685094' , '532322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '武定县' , '0878' , '102.406785' , '25.5301' , '532329' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532300' ORDER BY id ASC LIMIT 1) m), '永仁县' , '0878' , '101.671175' , '26.056316' , '532327' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '丽江市' , '0888' , '100.233026' , '26.872108' , '530700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530700' ORDER BY id ASC LIMIT 1) m), '宁蒗彝族自治县' , '0888' , '100.852427' , '27.281109' , '530724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530700' ORDER BY id ASC LIMIT 1) m), '玉龙纳西族自治县' , '0888' , '100.238312' , '26.830593' , '530721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530700' ORDER BY id ASC LIMIT 1) m), '永胜县' , '0888' , '100.750901' , '26.685623' , '530722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530700' ORDER BY id ASC LIMIT 1) m), '古城区' , '0888' , '100.234412' , '26.872229' , '530702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530700' ORDER BY id ASC LIMIT 1) m), '华坪县' , '0888' , '101.267796' , '26.628834' , '530723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '保山市' , '0875' , '99.167133' , '25.111802' , '530500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530500' ORDER BY id ASC LIMIT 1) m), '腾冲市' , '0875' , '98.497292' , '25.01757' , '530581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530500' ORDER BY id ASC LIMIT 1) m), '隆阳区' , '0875' , '99.165825' , '25.112144' , '530502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530500' ORDER BY id ASC LIMIT 1) m), '昌宁县' , '0875' , '99.612344' , '24.823662' , '530524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530500' ORDER BY id ASC LIMIT 1) m), '龙陵县' , '0875' , '98.693567' , '24.591912' , '530523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530500' ORDER BY id ASC LIMIT 1) m), '施甸县' , '0875' , '99.183758' , '24.730847' , '530521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '普洱市' , '0879' , '100.972344' , '22.777321' , '530800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '景东彝族自治县' , '0879' , '100.840011' , '24.448523' , '530823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '镇沅彝族哈尼族拉祜族自治县' , '0879' , '101.108512' , '24.005712' , '530825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '墨江哈尼族自治县' , '0879' , '101.687606' , '23.428165' , '530822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '景谷傣族彝族自治县' , '0879' , '100.701425' , '23.500278' , '530824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '宁洱哈尼族彝族自治县' , '0879' , '101.04524' , '23.062507' , '530821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '澜沧拉祜族自治县' , '0879' , '99.931201' , '22.553083' , '530828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '思茅区' , '0879' , '100.973227' , '22.776595' , '530802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '西盟佤族自治县' , '0879' , '99.594372' , '22.644423' , '530829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '孟连傣族拉祜族佤族自治县' , '0879' , '99.585406' , '22.325924' , '530827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530800' ORDER BY id ASC LIMIT 1) m), '江城哈尼族彝族自治县' , '0879' , '101.859144' , '22.58336' , '530826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '文山壮族苗族自治州' , '0876' , '104.24401' , '23.36951' , '532600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '广南县' , '0876' , '105.056684' , '24.050272' , '532627' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '丘北县' , '0876' , '104.194366' , '24.040982' , '532626' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '砚山县' , '0876' , '104.343989' , '23.612301' , '532622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '麻栗坡县' , '0876' , '104.701899' , '23.124202' , '532624' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '文山市' , '0876' , '104.244277' , '23.369216' , '532601' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '西畴县' , '0876' , '104.675711' , '23.437439' , '532623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '马关县' , '0876' , '104.398619' , '23.011723' , '532625' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '532600' ORDER BY id ASC LIMIT 1) m), '富宁县' , '0876' , '105.62856' , '23.626494' , '532628' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '临沧市' , '0883' , '100.08697' , '23.886567' , '530900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '凤庆县' , '0883' , '99.91871' , '24.592738' , '530921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '云县' , '0883' , '100.125637' , '24.439026' , '530922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '永德县' , '0883' , '99.253679' , '24.028159' , '530923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '耿马傣族佤族自治县' , '0883' , '99.402495' , '23.534579' , '530926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '镇康县' , '0883' , '98.82743' , '23.761415' , '530924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '临翔区' , '0883' , '100.086486' , '23.886562' , '530902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '沧源佤族自治县' , '0883' , '99.2474' , '23.146887' , '530927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530900' ORDER BY id ASC LIMIT 1) m), '双江拉祜族佤族布朗族傣族自治县' , '0883' , '99.824419' , '23.477476' , '530925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '德宏傣族景颇族自治州' , '0692' , '98.578363' , '24.436694' , '533100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533100' ORDER BY id ASC LIMIT 1) m), '盈江县' , '0692' , '97.93393' , '24.709541' , '533123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533100' ORDER BY id ASC LIMIT 1) m), '陇川县' , '0692' , '97.794441' , '24.184065' , '533124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533100' ORDER BY id ASC LIMIT 1) m), '梁河县' , '0692' , '98.298196' , '24.80742' , '533122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533100' ORDER BY id ASC LIMIT 1) m), '芒市' , '0692' , '98.577608' , '24.436699' , '533103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '533100' ORDER BY id ASC LIMIT 1) m), '瑞丽市' , '0692' , '97.855883' , '24.010734' , '533102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530000' ORDER BY id ASC LIMIT 1) m), '昆明市' , '0871' , '102.712251' , '25.040609' , '530100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '东川区' , '0871' , '103.182' , '26.08349' , '530113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '寻甸回族彝族自治县' , '0871' , '103.257588' , '25.559474' , '530129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '五华区' , '0871' , '102.704412' , '25.042165' , '530102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '石林彝族自治县' , '0871' , '103.271962' , '24.754545' , '530126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '西山区' , '0871' , '102.705904' , '25.02436' , '530112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '宜良县' , '0871' , '103.145989' , '24.918215' , '530125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '晋宁区' , '0871' , '102.594987' , '24.666944' , '530115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '富民县' , '0871' , '102.497888' , '25.219667' , '530124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '安宁市' , '0871' , '102.485544' , '24.921785' , '530181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '禄劝彝族苗族自治县' , '0871' , '102.46905' , '25.556533' , '530128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '嵩明县' , '0871' , '103.038777' , '25.335087' , '530127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '官渡区' , '0871' , '102.723437' , '25.021211' , '530111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '盘龙区' , '0871' , '102.729044' , '25.070239' , '530103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '530100' ORDER BY id ASC LIMIT 1) m), '呈贡区' , '0871' , '102.801382' , '24.889275' , '530114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '北京市' , '010' , '116.405285' , '39.904989' , '110000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110000' ORDER BY id ASC LIMIT 1) m), '北京城区' , '010' , '116.405285' , '39.904989' , '110100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '怀柔区' , '010' , '116.637122' , '40.324272' , '110116' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '延庆区' , '010' , '115.985006' , '40.465325' , '110119' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '顺义区' , '010' , '116.653525' , '40.128936' , '110113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '门头沟区' , '010' , '116.105381' , '39.937183' , '110109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '平谷区' , '010' , '117.112335' , '40.144783' , '110117' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '朝阳区' , '010' , '116.486409' , '39.921489' , '110105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '东城区' , '010' , '116.418757' , '39.917544' , '110101' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '石景山区' , '010' , '116.195445' , '39.914601' , '110107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '大兴区' , '010' , '116.338033' , '39.728908' , '110115' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '通州区' , '010' , '116.658603' , '39.902486' , '110112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '密云区' , '010' , '116.843352' , '40.377362' , '110118' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '昌平区' , '010' , '116.235906' , '40.218085' , '110114' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '房山区' , '010' , '116.139157' , '39.735535' , '110111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '丰台区' , '010' , '116.286968' , '39.863642' , '110106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '西城区' , '010' , '116.366794' , '39.915309' , '110102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '110100' ORDER BY id ASC LIMIT 1) m), '海淀区' , '010' , '116.310316' , '39.956074' , '110108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '江西省' , '' , '115.892151' , '28.676493' , '360000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '赣州市' , '0797' , '114.940278' , '25.85097' , '360700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '宁都县' , '0797' , '116.018782' , '26.472054' , '360730' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '兴国县' , '0797' , '115.351896' , '26.330489' , '360732' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '上犹县' , '0797' , '114.540537' , '25.794284' , '360724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '全南县' , '0797' , '114.531589' , '24.742651' , '360729' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '信丰县' , '0797' , '114.930893' , '25.38023' , '360722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '于都县' , '0797' , '115.411198' , '25.955033' , '360731' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '瑞金市' , '0797' , '116.034854' , '25.875278' , '360781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '石城县' , '0797' , '116.342249' , '26.326582' , '360735' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '寻乌县' , '0797' , '115.651399' , '24.954136' , '360734' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '崇义县' , '0797' , '114.307348' , '25.687911' , '360725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '大余县' , '0797' , '114.362243' , '25.395937' , '360723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '定南县' , '0797' , '115.03267' , '24.774277' , '360728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '章贡区' , '0797' , '114.93872' , '25.851367' , '360702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '龙南市' , '0797' , '114.792657' , '24.90476' , '360783' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '南康区' , '0797' , '114.756933' , '25.661721' , '360703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '赣县区' , '0797' , '115.018461' , '25.865432' , '360704' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '安远县' , '0797' , '115.392328' , '25.134591' , '360726' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360700' ORDER BY id ASC LIMIT 1) m), '会昌县' , '0797' , '115.791158' , '25.599125' , '360733' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '抚州市' , '0794' , '116.358351' , '27.98385' , '361000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '临川区' , '0794' , '116.361404' , '27.981919' , '361002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '东乡区' , '0794' , '116.605341' , '28.2325' , '361003' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '乐安县' , '0794' , '115.838432' , '27.420101' , '361025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '金溪县' , '0794' , '116.778751' , '27.907387' , '361027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '资溪县' , '0794' , '117.066095' , '27.70653' , '361028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '黎川县' , '0794' , '116.91457' , '27.292561' , '361022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '南城县' , '0794' , '116.63945' , '27.55531' , '361021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '崇仁县' , '0794' , '116.059109' , '27.760907' , '361024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '宜黄县' , '0794' , '116.223023' , '27.546512' , '361026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '广昌县' , '0794' , '116.327291' , '26.838426' , '361030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361000' ORDER BY id ASC LIMIT 1) m), '南丰县' , '0794' , '116.532994' , '27.210132' , '361023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '九江市' , '0792' , '115.992811' , '29.712034' , '360400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '彭泽县' , '0792' , '116.55584' , '29.898865' , '360430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '湖口县' , '0792' , '116.244313' , '29.7263' , '360429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '武宁县' , '0792' , '115.105646' , '29.260182' , '360423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '都昌县' , '0792' , '116.205114' , '29.275105' , '360428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '柴桑区' , '0792' , '115.892977' , '29.610264' , '360404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '修水县' , '0792' , '114.573428' , '29.032729' , '360424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '濂溪区' , '0792' , '115.99012' , '29.676175' , '360402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '庐山市' , '0792' , '116.043743' , '29.456169' , '360483' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '永修县' , '0792' , '115.809055' , '29.018212' , '360425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '共青城市' , '0792' , '115.805712' , '29.247884' , '360482' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '德安县' , '0792' , '115.762611' , '29.327474' , '360426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '瑞昌市' , '0792' , '115.669081' , '29.676599' , '360481' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360400' ORDER BY id ASC LIMIT 1) m), '浔阳区' , '0792' , '115.995947' , '29.72465' , '360403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '景德镇市' , '0798' , '117.214664' , '29.29256' , '360200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360200' ORDER BY id ASC LIMIT 1) m), '浮梁县' , '0798' , '117.217611' , '29.352251' , '360222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360200' ORDER BY id ASC LIMIT 1) m), '昌江区' , '0798' , '117.195023' , '29.288465' , '360202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360200' ORDER BY id ASC LIMIT 1) m), '乐平市' , '0798' , '117.129376' , '28.967361' , '360281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360200' ORDER BY id ASC LIMIT 1) m), '珠山区' , '0798' , '117.214814' , '29.292812' , '360203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '萍乡市' , '0799' , '113.852186' , '27.622946' , '360300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360300' ORDER BY id ASC LIMIT 1) m), '安源区' , '0799' , '113.855044' , '27.625826' , '360302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360300' ORDER BY id ASC LIMIT 1) m), '上栗县' , '0799' , '113.800525' , '27.877041' , '360322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360300' ORDER BY id ASC LIMIT 1) m), '芦溪县' , '0799' , '114.041206' , '27.633633' , '360323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360300' ORDER BY id ASC LIMIT 1) m), '莲花县' , '0799' , '113.955582' , '27.127807' , '360321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360300' ORDER BY id ASC LIMIT 1) m), '湘东区' , '0799' , '113.7456' , '27.639319' , '360313' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '宜春市' , '0795' , '114.391136' , '27.8043' , '360900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '奉新县' , '0795' , '115.389899' , '28.700672' , '360921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '宜丰县' , '0795' , '114.787381' , '28.388289' , '360924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '高安市' , '0795' , '115.381527' , '28.420951' , '360983' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '上高县' , '0795' , '114.932653' , '28.234789' , '360923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '丰城市' , '0795' , '115.786005' , '28.191584' , '360981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '铜鼓县' , '0795' , '114.37014' , '28.520956' , '360926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '袁州区' , '0795' , '114.387379' , '27.800117' , '360902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '万载县' , '0795' , '114.449012' , '28.104528' , '360922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '樟树市' , '0795' , '115.543388' , '28.055898' , '360982' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360900' ORDER BY id ASC LIMIT 1) m), '靖安县' , '0795' , '115.361744' , '28.86054' , '360925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '南昌市' , '0791' , '115.892151' , '28.676493' , '360100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '进贤县' , '0791' , '116.267671' , '28.365681' , '360124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '南昌县' , '0791' , '115.942465' , '28.543781' , '360121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '青云谱区' , '0791' , '115.907292' , '28.635724' , '360104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '西湖区' , '0791' , '115.91065' , '28.662901' , '360103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '青山湖区' , '0791' , '115.949044' , '28.689292' , '360111' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '东湖区' , '0791' , '115.889675' , '28.682988' , '360102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '安义县' , '0791' , '115.553109' , '28.841334' , '360123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '红谷滩区' , '0791' , '115.8580521' , '28.69819928' , '360113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360100' ORDER BY id ASC LIMIT 1) m), '新建区' , '0791' , '115.820806' , '28.690788' , '360112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '新余市' , '0790' , '114.930835' , '27.810834' , '360500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360500' ORDER BY id ASC LIMIT 1) m), '分宜县' , '0790' , '114.675262' , '27.811301' , '360521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360500' ORDER BY id ASC LIMIT 1) m), '渝水区' , '0790' , '114.923923' , '27.819171' , '360502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '吉安市' , '0796' , '114.986373' , '27.111699' , '360800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '吉安县' , '0796' , '114.905117' , '27.040042' , '360821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '吉水县' , '0796' , '115.134569' , '27.213445' , '360822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '吉州区' , '0796' , '114.987331' , '27.112367' , '360802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '永新县' , '0796' , '114.242534' , '26.944721' , '360830' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '万安县' , '0796' , '114.784694' , '26.462085' , '360828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '永丰县' , '0796' , '115.435559' , '27.321087' , '360825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '青原区' , '0796' , '115.016306' , '27.105879' , '360803' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '遂川县' , '0796' , '114.51689' , '26.323705' , '360827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '新干县' , '0796' , '115.399294' , '27.755758' , '360824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '安福县' , '0796' , '114.61384' , '27.382746' , '360829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '峡江县' , '0796' , '115.319331' , '27.580862' , '360823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '泰和县' , '0796' , '114.901393' , '26.790164' , '360826' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360800' ORDER BY id ASC LIMIT 1) m), '井冈山市' , '0796' , '114.284421' , '26.745919' , '360881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '鹰潭市' , '0701' , '117.033838' , '28.238638' , '360600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360600' ORDER BY id ASC LIMIT 1) m), '贵溪市' , '0701' , '117.212103' , '28.283693' , '360681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360600' ORDER BY id ASC LIMIT 1) m), '月湖区' , '0701' , '117.034112' , '28.239076' , '360602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360600' ORDER BY id ASC LIMIT 1) m), '余江区' , '0701' , '116.822763' , '28.206177' , '360603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '360000' ORDER BY id ASC LIMIT 1) m), '上饶市' , '0793' , '117.971185' , '28.44442' , '361100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '横峰县' , '0793' , '117.608247' , '28.415103' , '361125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '婺源县' , '0793' , '117.86219' , '29.254015' , '361130' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '弋阳县' , '0793' , '117.435002' , '28.402391' , '361126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '广丰区' , '0793' , '118.189852' , '28.440285' , '361103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '铅山县' , '0793' , '117.711906' , '28.310892' , '361124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '玉山县' , '0793' , '118.244408' , '28.673479' , '361123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '广信区' , '0793' , '117.90612' , '28.453897' , '361104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '信州区' , '0793' , '117.970522' , '28.445378' , '361102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '余干县' , '0793' , '116.691072' , '28.69173' , '361127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '鄱阳县' , '0793' , '116.673748' , '28.993374' , '361128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '万年县' , '0793' , '117.07015' , '28.692589' , '361129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '361100' ORDER BY id ASC LIMIT 1) m), '德兴市' , '0793' , '117.578732' , '28.945034' , '361181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '吉林省' , '' , '125.3245' , '43.886841' , '220000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '吉林市' , '0432' , '126.55302' , '43.843577' , '220200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '丰满区' , '0432' , '126.560759' , '43.816594' , '220211' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '舒兰市' , '0432' , '126.947813' , '44.410906' , '220283' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '桦甸市' , '0432' , '126.745445' , '42.972093' , '220282' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '蛟河市' , '0432' , '127.342739' , '43.720579' , '220281' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '龙潭区' , '0432' , '126.561429' , '43.909755' , '220203' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '永吉县' , '0432' , '126.501622' , '43.667416' , '220221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '磐石市' , '0432' , '126.059929' , '42.942476' , '220284' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '船营区' , '0432' , '126.55239' , '43.843804' , '220204' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220200' ORDER BY id ASC LIMIT 1) m), '昌邑区' , '0432' , '126.570766' , '43.851118' , '220202' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '白城市' , '0436' , '122.841114' , '45.619026' , '220800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220800' ORDER BY id ASC LIMIT 1) m), '大安市' , '0436' , '124.291512' , '45.507648' , '220882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220800' ORDER BY id ASC LIMIT 1) m), '通榆县' , '0436' , '123.088543' , '44.80915' , '220822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220800' ORDER BY id ASC LIMIT 1) m), '洮南市' , '0436' , '122.783779' , '45.339113' , '220881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220800' ORDER BY id ASC LIMIT 1) m), '洮北区' , '0436' , '122.842499' , '45.619253' , '220802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220800' ORDER BY id ASC LIMIT 1) m), '镇赉县' , '0436' , '123.202246' , '45.846089' , '220821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '长春市' , '0431' , '125.3245' , '43.886841' , '220100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '德惠市' , '0431' , '125.703327' , '44.533909' , '220183' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '榆树市' , '0431' , '126.550107' , '44.827642' , '220182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '双阳区' , '0431' , '125.659018' , '43.525168' , '220112' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '农安县' , '0431' , '125.175287' , '44.431258' , '220122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '宽城区' , '0431' , '125.342828' , '43.903823' , '220103' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '九台区' , '0431' , '125.844682' , '44.157155' , '220113' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '朝阳区' , '0431' , '125.318042' , '43.86491' , '220104' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '公主岭市' , '0431' , '124.817588' , '43.509474' , '220184' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '绿园区' , '0431' , '125.272467' , '43.892177' , '220106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '二道区' , '0431' , '125.384727' , '43.870824' , '220105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220100' ORDER BY id ASC LIMIT 1) m), '南关区' , '0431' , '125.337237' , '43.890235' , '220102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '松原市' , '0438' , '124.823608' , '45.118243' , '220700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220700' ORDER BY id ASC LIMIT 1) m), '扶余市' , '0438' , '126.042758' , '44.986199' , '220781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220700' ORDER BY id ASC LIMIT 1) m), '宁江区' , '0438' , '124.827851' , '45.176498' , '220702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220700' ORDER BY id ASC LIMIT 1) m), '前郭尔罗斯蒙古族自治县' , '0438' , '124.826808' , '45.116288' , '220721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220700' ORDER BY id ASC LIMIT 1) m), '乾安县' , '0438' , '124.024361' , '45.006846' , '220723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220700' ORDER BY id ASC LIMIT 1) m), '长岭县' , '0438' , '123.985184' , '44.276579' , '220722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '辽源市' , '0437' , '125.145349' , '42.902692' , '220400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220400' ORDER BY id ASC LIMIT 1) m), '西安区' , '0437' , '125.151424' , '42.920415' , '220403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220400' ORDER BY id ASC LIMIT 1) m), '东丰县' , '0437' , '125.529623' , '42.675228' , '220421' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220400' ORDER BY id ASC LIMIT 1) m), '东辽县' , '0437' , '124.991995' , '42.927724' , '220422' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220400' ORDER BY id ASC LIMIT 1) m), '龙山区' , '0437' , '125.145164' , '42.902702' , '220402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '通化市' , '0435' , '125.936501' , '41.721177' , '220500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '二道江区' , '0435' , '126.045987' , '41.777564' , '220503' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '东昌区' , '0435' , '125.936716' , '41.721233' , '220502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '通化县' , '0435' , '125.753121' , '41.677918' , '220521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '柳河县' , '0435' , '125.740536' , '42.281484' , '220524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '梅河口市' , '0435' , '125.687336' , '42.530002' , '220581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '辉南县' , '0435' , '126.042821' , '42.683459' , '220523' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220500' ORDER BY id ASC LIMIT 1) m), '集安市' , '0435' , '126.186204' , '41.126276' , '220582' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '四平市' , '0434' , '124.370785' , '43.170344' , '220300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220300' ORDER BY id ASC LIMIT 1) m), '铁东区' , '0434' , '124.388464' , '43.16726' , '220303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220300' ORDER BY id ASC LIMIT 1) m), '双辽市' , '0434' , '123.505283' , '43.518275' , '220382' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220300' ORDER BY id ASC LIMIT 1) m), '伊通满族自治县' , '0434' , '125.303124' , '43.345464' , '220323' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220300' ORDER BY id ASC LIMIT 1) m), '梨树县' , '0434' , '124.335802' , '43.30831' , '220322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220300' ORDER BY id ASC LIMIT 1) m), '铁西区' , '0434' , '124.360894' , '43.176263' , '220302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '延边朝鲜族自治州' , '1433' , '129.513228' , '42.904823' , '222400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '图们市' , '1433' , '129.846701' , '42.966621' , '222402' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '珲春市' , '1433' , '130.365787' , '42.871057' , '222404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '和龙市' , '1433' , '129.008748' , '42.547004' , '222406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '汪清县' , '1433' , '129.766161' , '43.315426' , '222424' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '延吉市' , '1433' , '129.51579' , '42.906964' , '222401' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '安图县' , '1433' , '128.901865' , '43.110994' , '222426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '敦化市' , '1433' , '128.22986' , '43.366921' , '222403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '222400' ORDER BY id ASC LIMIT 1) m), '龙井市' , '1433' , '129.425747' , '42.771029' , '222405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220000' ORDER BY id ASC LIMIT 1) m), '白山市' , '0439' , '126.427839' , '41.942505' , '220600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '长白朝鲜族自治县' , '0439' , '128.203384' , '41.419361' , '220623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '江源区' , '0439' , '126.584229' , '42.048109' , '220605' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '靖宇县' , '0439' , '126.808386' , '42.389689' , '220622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '抚松县' , '0439' , '127.273796' , '42.332643' , '220621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '临江市' , '0439' , '126.919296' , '41.810689' , '220681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '220600' ORDER BY id ASC LIMIT 1) m), '浑江区' , '0439' , '126.428035' , '41.943065' , '220602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (1,0, '山西省' , '' , '112.549248' , '37.857014' , '140000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '阳泉市' , '0353' , '113.583285' , '37.861188' , '140300' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140300' ORDER BY id ASC LIMIT 1) m), '平定县' , '0353' , '113.631049' , '37.800289' , '140321' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140300' ORDER BY id ASC LIMIT 1) m), '城区' , '0353' , '113.586513' , '37.860938' , '140302' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140300' ORDER BY id ASC LIMIT 1) m), '郊区' , '0353' , '113.58664' , '37.94096' , '140311' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140300' ORDER BY id ASC LIMIT 1) m), '盂县' , '0353' , '113.41223' , '38.086131' , '140322' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140300' ORDER BY id ASC LIMIT 1) m), '矿区' , '0353' , '113.559066' , '37.870085' , '140303' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '太原市' , '0351' , '112.549248' , '37.857014' , '140100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '尖草坪区' , '0351' , '112.487122' , '37.939893' , '140108' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '娄烦县' , '0351' , '111.793798' , '38.066035' , '140123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '杏花岭区' , '0351' , '112.560743' , '37.879291' , '140107' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '阳曲县' , '0351' , '112.673818' , '38.058797' , '140122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '清徐县' , '0351' , '112.357961' , '37.60729' , '140121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '古交市' , '0351' , '112.174353' , '37.908534' , '140181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '万柏林区' , '0351' , '112.522258' , '37.862653' , '140109' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '晋源区' , '0351' , '112.477849' , '37.715619' , '140110' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '小店区' , '0351' , '112.564273' , '37.817974' , '140105' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140100' ORDER BY id ASC LIMIT 1) m), '迎泽区' , '0351' , '112.558851' , '37.855804' , '140106' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '朔州市' , '0349' , '112.433387' , '39.331261' , '140600' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '平鲁区' , '0349' , '112.295227' , '39.515603' , '140603' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '右玉县' , '0349' , '112.465588' , '39.988812' , '140623' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '应县' , '0349' , '113.187505' , '39.559187' , '140622' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '山阴县' , '0349' , '112.816396' , '39.52677' , '140621' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '朔城区' , '0349' , '112.428676' , '39.324525' , '140602' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140600' ORDER BY id ASC LIMIT 1) m), '怀仁市' , '0349' , '113.100511' , '39.820789' , '140681' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '吕梁市' , '0358' , '111.134335' , '37.524366' , '141100' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '临县' , '0358' , '110.995963' , '37.960806' , '141124' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '离石区' , '0358' , '111.134462' , '37.524037' , '141102' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '岚县' , '0358' , '111.671555' , '38.278654' , '141127' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '方山县' , '0358' , '111.238885' , '37.892632' , '141128' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '柳林县' , '0358' , '110.89613' , '37.431664' , '141125' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '交口县' , '0358' , '111.183188' , '36.983068' , '141130' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '中阳县' , '0358' , '111.193319' , '37.342054' , '141129' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '兴县' , '0358' , '111.124816' , '38.464136' , '141123' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '石楼县' , '0358' , '110.837119' , '36.999426' , '141126' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '交城县' , '0358' , '112.159154' , '37.555155' , '141122' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '文水县' , '0358' , '112.032595' , '37.436314' , '141121' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '孝义市' , '0358' , '111.781568' , '37.144474' , '141181' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141100' ORDER BY id ASC LIMIT 1) m), '汾阳市' , '0358' , '111.785273' , '37.267742' , '141182' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '大同市' , '0352' , '113.295259' , '40.09031' , '140200' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '浑源县' , '0352' , '113.698091' , '39.699099' , '140225' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '灵丘县' , '0352' , '114.23576' , '39.438867' , '140224' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '广灵县' , '0352' , '114.279252' , '39.763051' , '140223' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '阳高县' , '0352' , '113.749871' , '40.364927' , '140221' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '天镇县' , '0352' , '114.09112' , '40.421336' , '140222' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '新荣区' , '0352' , '113.141044' , '40.258269' , '140212' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '云州区' , '0352' , '113.61244' , '40.040295' , '140215' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '左云县' , '0352' , '112.70641' , '40.012873' , '140226' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '平城区' , '0352' , '113.298027' , '40.075667' , '140213' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140200' ORDER BY id ASC LIMIT 1) m), '云冈区' , '0352' , '113.149693' , '40.005405' , '140214' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '晋中市' , '0354' , '112.736465' , '37.696495' , '140700' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '和顺县' , '0354' , '113.572919' , '37.327027' , '140723' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '昔阳县' , '0354' , '113.706166' , '37.60437' , '140724' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '介休市' , '0354' , '111.913857' , '37.027616' , '140781' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '寿阳县' , '0354' , '113.177708' , '37.891136' , '140725' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '榆社县' , '0354' , '112.973521' , '37.069019' , '140721' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '左权县' , '0354' , '113.377834' , '37.079672' , '140722' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '灵石县' , '0354' , '111.772759' , '36.847469' , '140729' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '榆次区' , '0354' , '112.740056' , '37.6976' , '140702' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '祁县' , '0354' , '112.330532' , '37.358739' , '140727' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '太谷区' , '0354' , '112.554103' , '37.424595' , '140703' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140700' ORDER BY id ASC LIMIT 1) m), '平遥县' , '0354' , '112.174059' , '37.195474' , '140728' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '晋城市' , '0356' , '112.851274' , '35.497553' , '140500' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '城区' , '0356' , '112.853106' , '35.496641' , '140502' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '泽州县' , '0356' , '112.899137' , '35.617221' , '140525' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '沁水县' , '0356' , '112.187213' , '35.689472' , '140521' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '阳城县' , '0356' , '112.422014' , '35.482177' , '140522' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '陵川县' , '0356' , '113.278877' , '35.775614' , '140524' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140500' ORDER BY id ASC LIMIT 1) m), '高平市' , '0356' , '112.930691' , '35.791355' , '140581' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '长治市' , '0355' , '113.113556' , '36.191112' , '140400' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '黎城县' , '0355' , '113.387366' , '36.502971' , '140426' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '屯留区' , '0355' , '112.892741' , '36.314072' , '140405' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '长子县' , '0355' , '112.884656' , '36.119484' , '140428' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '潞城区' , '0355' , '113.223245' , '36.332232' , '140406' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '平顺县' , '0355' , '113.438791' , '36.200202' , '140425' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '襄垣县' , '0355' , '113.050094' , '36.532854' , '140423' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '潞州区' , '0355' , '113.114107' , '36.187895' , '140403' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '沁县' , '0355' , '112.70138' , '36.757123' , '140430' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '武乡县' , '0355' , '112.8653' , '36.834315' , '140429' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '壶关县' , '0355' , '113.206138' , '36.110938' , '140427' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '沁源县' , '0355' , '112.340878' , '36.500777' , '140431' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140400' ORDER BY id ASC LIMIT 1) m), '上党区' , '0355' , '113.056679' , '36.052438' , '140404' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '忻州市' , '0350' , '112.733538' , '38.41769' , '140900' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '原平市' , '0350' , '112.713132' , '38.729186' , '140981' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '五寨县' , '0350' , '111.841015' , '38.912761' , '140928' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '宁武县' , '0350' , '112.307936' , '39.001718' , '140925' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '偏关县' , '0350' , '111.500477' , '39.442153' , '140932' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '代县' , '0350' , '112.962519' , '39.065138' , '140923' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '岢岚县' , '0350' , '111.56981' , '38.705625' , '140929' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '五台县' , '0350' , '113.259012' , '38.725711' , '140922' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '忻府区' , '0350' , '112.734112' , '38.417743' , '140902' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '定襄县' , '0350' , '112.963231' , '38.484948' , '140921' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '静乐县' , '0350' , '111.940231' , '38.355947' , '140926' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '神池县' , '0350' , '112.200438' , '39.088467' , '140927' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '繁峙县' , '0350' , '113.267707' , '39.188104' , '140924' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '保德县' , '0350' , '111.085688' , '39.022576' , '140931' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140900' ORDER BY id ASC LIMIT 1) m), '河曲县' , '0350' , '111.146609' , '39.381895' , '140930' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '临汾市' , '0357' , '111.517973' , '36.08415' , '141000' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '古县' , '0357' , '111.920207' , '36.26855' , '141025' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '大宁县' , '0357' , '110.751283' , '36.46383' , '141030' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '隰县' , '0357' , '110.935809' , '36.692675' , '141031' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '汾西县' , '0357' , '111.563021' , '36.653368' , '141034' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '吉县' , '0357' , '110.682853' , '36.099355' , '141028' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '安泽县' , '0357' , '112.251372' , '36.146032' , '141026' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '永和县' , '0357' , '110.631276' , '36.760614' , '141032' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '霍州市' , '0357' , '111.723103' , '36.57202' , '141082' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '侯马市' , '0357' , '111.371272' , '35.620302' , '141081' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '乡宁县' , '0357' , '110.857365' , '35.975402' , '141029' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '蒲县' , '0357' , '111.09733' , '36.411682' , '141033' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '洪洞县' , '0357' , '111.673692' , '36.255742' , '141024' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '浮山县' , '0357' , '111.850039' , '35.971359' , '141027' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '襄汾县' , '0357' , '111.442932' , '35.876139' , '141023' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '尧都区' , '0357' , '111.522945' , '36.080366' , '141002' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '翼城县' , '0357' , '111.713508' , '35.738621' , '141022' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '141000' ORDER BY id ASC LIMIT 1) m), '曲沃县' , '0357' , '111.475529' , '35.641387' , '141021' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (2,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140000' ORDER BY id ASC LIMIT 1) m), '运城市' , '0359' , '111.003957' , '35.022778' , '140800' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '夏县' , '0359' , '111.223174' , '35.140441' , '140828' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '盐湖区' , '0359' , '111.000627' , '35.025643' , '140802' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '万荣县' , '0359' , '110.843561' , '35.417042' , '140822' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '临猗县' , '0359' , '110.77493' , '35.141883' , '140821' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '闻喜县' , '0359' , '111.220306' , '35.353839' , '140823' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '平陆县' , '0359' , '111.212377' , '34.837256' , '140829' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '垣曲县' , '0359' , '111.67099' , '35.298293' , '140827' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '新绛县' , '0359' , '111.225205' , '35.613697' , '140825' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '稷山县' , '0359' , '110.978996' , '35.600412' , '140824' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '河津市' , '0359' , '110.710268' , '35.59715' , '140882' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '芮城县' , '0359' , '110.69114' , '34.694769' , '140830' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '永济市' , '0359' , '110.447984' , '34.865125' , '140881' ); INSERT INTO `uac_city` (` level `,`parent_id`,` name `,`city_code`,`center_x`,`center_y`,`adcode`) VALUES (3,( SELECT id FROM ( SELECT `id` AS id FROM `uac_city` WHERE `adcode` = '140800' ORDER BY id ASC LIMIT 1) m), '绛县' , '0359' , '111.576182' , '35.49045' , '140826' ); |