Last active
January 8, 2023 10:38
-
-
Save mbforr/f83d342faf5f1984c97a3d9faf524585 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 | |
name, | |
st_y(geom) | |
FROM | |
`YOUR_PROJECT.YOUR_DATASET.airports` | |
WHERE | |
country = 'CA' | |
ORDER BY | |
st_y(geom) ASC, | |
name ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment