You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sql = '''CREATE TABLE IF NOT EXISTS `%s` (
`meas_time` DATE NOT NULL,
`meas_hour` TINYINT NOT NULL,
`aqi` FLOAT NOT NULL,
`pm2_5` FLOAT NOT NULL,
`pm2_5_24h` FLOAT NOT NULL,
`pm10` FLOAT NOT NULL,
`pm10_24h` FLOAT NOT NULL,
`so2` FLOAT NOT NULL,
`so2_24h` FLOAT NOT NULL,
`no2` FLOAT NOT NULL,
`no2_24h` FLOAT NOT NULL,
`o3` FLOAT NOT NULL,
`o3_24h` FLOAT NOT NULL,
`o3_8h` FLOAT NOT NULL,
`o3_8h_24h` FLOAT NOT NULL,
`co` FLOAT NOT NULL,
`co_24h` FLOAT NOT NULL,
UNIQUE KEY (`meas_time`, `meas_hour`)
);''' % (city_name + table_suffix)