Created
March 27, 2017 17:58
-
-
Save gledsoncruz/09839ed4cd72605a03d4d9c0485d0471 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 interceptam os limites do bairro SANTO AGOSTINHO? | |
SELECT lot.nome FROM loteamentos lot, bairros b | |
WHERE st_overlaps(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