climate_data
12 rows where region_id = "CZ04"
This data as json, CSV (advanced)
| Link | region_id | month | avg_temp |
|---|---|---|---|
| CZ04,1 | Severozápad CZ04 | 1 | -0.5 |
| CZ04,2 | Severozápad CZ04 | 2 | 0.4 |
| CZ04,3 | Severozápad CZ04 | 3 | 3.89 |
| CZ04,4 | Severozápad CZ04 | 4 | 8.93 |
| CZ04,5 | Severozápad CZ04 | 5 | 13.62 |
| CZ04,6 | Severozápad CZ04 | 6 | 17.14 |
| CZ04,7 | Severozápad CZ04 | 7 | 19.23 |
| CZ04,8 | Severozápad CZ04 | 8 | 19.0 |
| CZ04,9 | Severozápad CZ04 | 9 | 14.28 |
| CZ04,10 | Severozápad CZ04 | 10 | 9.05 |
| CZ04,11 | Severozápad CZ04 | 11 | 3.91 |
| CZ04,12 | Severozápad CZ04 | 12 | 0.54 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE climate_data (
region_id TEXT,
month INTEGER,
avg_temp REAL,
PRIMARY KEY (region_id, month),
FOREIGN KEY (region_id) REFERENCES regions(id)
);