Synonym for ST_DISJOINT. Checks if two geometries are disjoint, meaning they have no points in common.
Disjoint(g1,g2)
Returns 1 or 0 to indicate whether g1 is spatially disjoint from (does not intersect) g2.
1
0
g1
g2
DISJOINT() tests the opposite relationship to INTERSECTS().
DISJOINT()
DISJOINT() is based on the original MySQL implementation and uses object bounding rectangles, while ST_DISJOINT() uses object shapes.
This page is licensed: GPLv2, originally from fill_help_tables.sql
Last updated 1 month ago
Was this helpful?