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_name, state | |
from | |
`bigquery-public-data.geo_us_boundaries.states` | |
# using and we can query on two parameters | |
where st_area(state_geom) >= 2e+11 | |
and left(state_name, 1) = 'M' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment