Created
July 6, 2021 18:44
-
-
Save mbforr/a7bd687f7fa2b5e6d212fc7fd46021f8 to your computer and use it in GitHub Desktop.
This file contains 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 | |
state_geom, state_name, state | |
from | |
`bigquery-public-data.geo_us_boundaries.states` | |
# this is a comment - it won't impact your code and you can delete it if you want | |
# use the where clause to select rows based on a condition | |
# in this case an exact match to where the state_name column equals Wisconsin | |
where state_name = 'Wisconsin' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment