Skip to content

PostGIS Point Within Area

Jason Lewis edited this page Feb 8, 2021 · 2 revisions

Up

select *
from "Table_Name"
where ST_Contains(
	"Table_Name"."Area_Column",
	st_pointfromtext('POINT(-114.023309 50.86291)', 0) 
)
Clone this wiki locally