- Categories:
ST_ DISJOINT¶
Returns TRUE if the two GEOGRAPHY objects or the two GEOMETRY objects are disjoint (i.e. do not share any portion of space). ST_DISJOINT is equivalent to NOT ST_INTERSECTS(expr1, expr2).
Note
This function does not support using a GeometryCollection or FeatureCollection as input values.
- See also:
Syntax¶
Arguments¶
geography_expression_1A GEOGRAPHY object.
geography_expression_2A GEOGRAPHY object.
geometry_expression_1A GEOMETRY object.
geometry_expression_2A GEOMETRY object.
Returns¶
BOOLEAN.
Usage notes¶
- For GEOMETRY objects, the function reports an error if the two input GEOMETRY objects have different SRIDs.
Examples¶
GEOGRAPHY examples¶
The following examples use the ST_DISJOINT function to determine if two geospatial objects are disjoint: