Created
February 15, 2017 21:26
-
-
Save tswast/0b6e5af5175f39202e2576cf7c1da515 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#standardSQL | |
SELECT | |
MAX(max) AS highest_high, | |
stn, | |
wban | |
FROM `bigquery-public-data.noaa_gsod.gsod*` | |
WHERE max != 9999.9 | |
GROUP BY stn, wban | |
ORDER BY highest_high DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment