I'm trying to combine 3+ NOAA GSOD data tables to get the data together in one super table. The I am attempting to JOIN the stations table onto the resultant data and then filter by country.
I've been able to do this for just one table but not for more. Below is my attempt at modifying the code to achieve this. I tried several different modifications with no success :(
SELECT * FROM [bigquery-public-data:noaa_gsod.gsod2016] AS gsod2016,
[bigquery-public-data:noaa_gsod.gsod2015] AS gsod2015 JOIN [bigquery-public-
data:noaa_gsod.stations] AS stations ON gsod2016.stn = stations.USAF AND
gsod2015.stn = stations.USAF WHERE stations.country = "CB"
NOAA GSOD bigquery data: https://bigquery.cloud.google.com/table/bigquery-public-data:noaa_gsod.gsod2016