ST_Contains
This section contains reference documentation for the ST_Contains function.
Returns true if and only if no points of the second geometry/geography lie in the exterior of the first geometry/geography, and at least one point of the interior of the first geometry lies in the interior of the second geometry.
Signature
ST_Contains(geometry, geometry)
Usage Examples
These examples are based on the Streaming Quick Start.
group_city | locationString | inPolygon |
---|---|---|
New York | POINT (-73.99 40.75) | 1 |
New York | POINT (-73.99 40.75) | 1 |
Staten Island | POINT (-74.15 40.61) | 1 |
New York | POINT (-73.99 40.75) | 1 |
New York | POINT (-73.99 40.75) | 1 |
count(*) |
---|
8 |
Last updated