Add files via upload
### `CREATE TABLE` 创建 `City` 数据表,如果已经存在,使用 `DROP TABLE` 先删除
```
# DROP TABLE IF EXISTS `City`;
CREATE TABLE `City` ( `ID` int, `Name` text, `CountryCode` text,
`District` text, `Population` int );
```
### `INSERT INTO` 向 `City` 数据表插入数据,或者使用备份的出来的数据导入 `City.sql.gz`
`City.sql.gz` [下载]
```
INSERT INTO `City` (`ID`, `Name`, `CountryCode`, `District`, `Population`) VALUES
(1, 'Kabul', 'AFG', 'Kabol', 1780000),
(2, 'Qandahar', 'AFG', 'Qandahar', 237500),
(3, 'Herat', 'AFG', 'Herat', 186800),
(4, 'Mazar-e-Sharif', 'AFG', 'Balkh', 127800),
(5, 'Amsterdam', 'NLD', 'Noord-Holland', 731200),
(4078, 'Nablus', 'PSE', 'Nablus', 100231),
(4079, 'Rafah', 'PSE', 'Rafah', 92020);
```