Skip to content

Instantly share code, notes, and snippets.

@securetorobert
Created July 13, 2020 10:15
Show Gist options
  • Save securetorobert/8e38b464393f4a6e5d9cae18f62bd26d to your computer and use it in GitHub Desktop.
Save securetorobert/8e38b464393f4a6e5d9cae18f62bd26d to your computer and use it in GitHub Desktop.
SQL Example
#standardSQL
SELECT
weight_pounds,
state,
year,
gestation_weeks
FROM
`bigquery-public-data.samples.natality`
ORDER BY
weight_pounds
DESC
LIMIT 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment