Created
September 13, 2018 00:49
-
-
Save b0noI/ba57a73b36f8f54748020bb4472607d3 to your computer and use it in GitHub Desktop.
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
%%bigquery | |
SELECT | |
source_year AS year, | |
COUNT(is_male) AS birth_count | |
FROM `bigquery-public-data.samples.natality` | |
GROUP BY year | |
ORDER BY year DESC | |
LIMIT 15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment