Last active
April 4, 2024 21:59
-
-
Save lambdamusic/7882b3e97b5a7898f18d3589b32c120d to your computer and use it in GitHub Desktop.
GBQ COVID-19 dataset sample query #sql
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
SELECT | |
p.id, | |
p.title.preferred AS title, | |
p.doi, | |
p.year, | |
p.journal.title, | |
p.type, | |
p.date AS date_publication, | |
p.date_inserted, | |
FROM | |
`covid-19-dimensions-ai.data.publications` p | |
WHERE | |
EXTRACT(YEAR | |
FROM | |
date_inserted) >= 2020 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment