Created
July 13, 2020 10:15
-
-
Save securetorobert/8e38b464393f4a6e5d9cae18f62bd26d to your computer and use it in GitHub Desktop.
SQL Example
This file contains hidden or 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 | |
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