You are analyzing global weather trends for the month of November 2026. Your task is to find the weather type for each country.
The weather type is determined by the average temperature of the country in that month:
| country_id(INTEGER) | country_name(VARCHAR) |
|---|---|
| 1 | USA |
| 2 | Australia |
| 3 | Norway |
| country_id(INTEGER) | weather_state(INTEGER) | day(DATE) |
|---|---|---|
| 1 | 10 | 2026-11-01 |
| 1 | 20 | 2026-11-15 |
| 2 | 30 | 2026-11-01 |
| 3 | 5 | 2026-11-10 |
| 3 | 15 | 2026-12-01 |
| partner_id(INTEGER) | country_id(INTEGER) | source_name(VARCHAR) |
|---|---|---|
| 101 | 1 | NOAA |
| 102 | 2 | BOM |
| country_name(VARCHAR) | weather_type(VARCHAR) |
|---|---|
| Australia | Hot |
| Norway | Cold |
| USA | Cold |