Created
March 27, 2017 20:13
-
-
Save gledsoncruz/519265f1fcdb45f20968120c67d6e44e 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
--Quais os loteamentos que estão dentro do bairro SANTO AGOSTINHO ? | |
SELECT lot.nome FROM loteamentos lot, bairros b | |
WHERE st_within(lot.the_geom, b.the_geom) AND b.nome = 'SANTO AGOSTINHO' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment