Ranking hot weather
You are working on a global climate report and need to determine the hottest temperatures for various weather stations. Hawaii is next on your list to analyze and rank the hottest months on record.
Rank the HI
weather station data by t_monthly_max
. Rank 1
should appear first and have the highest temperature. Temperatures that are the same should have the same rank, but no ranking levels should be skipped.
You will need to join temperatures_monthly
and temperature_stations
.
Este exercício faz parte do curso
Time Series Analysis in PostgreSQL
Instruções do exercício
- Rank
t_monthly_max
for theHI
weather station by joining the two tables; rank1
should have the highest temperature.
Exercício interativo prático
Experimente este exercício completando este código de exemplo.
-- Rank the highest temperatures in Hawaii
SELECT
ts.state,
year_month,
t_monthly_max,
___ OVER (___) AS rank
___ AS tm
___ AS ts
USING(station_id)
___
ORDER BY rank;