create table tb_001(
city_code       varchar(5)      not null,       /* from prov_city_list.long_cod/
min_temperature int             not null,       /* 最低摄氏温度 */
max_temperature int             not null,       /* 最高摄氏温度 */
tq_content      varchar(255)    not null,       /* 包括风向、风力、阴晴 */
insert_time     date        not null,       /* 入库时间 */
note            varchar(255)    null
)