Hacker News new | ask | show | jobs
by perl4ever 1645 days ago

   /*
   What is the range of elevations where tornadoes happen?
   */

   SELECT
     elev,
     COUNT(*) AS count
   FROM
     `fh-bigquery.weather_gsod.all`
   WHERE
     tornado_funnel_cloud = 'T'
   GROUP BY
     elev
   ORDER BY
     count DESC