123456789101112131415161718192021222324252627 |
- [discrete]
- [[esql-st_disjoint]]
- === `ST_DISJOINT`
- experimental::[]
- *Syntax*
- [.text-center]
- image::esql/functions/signature/st_disjoint.svg[Embedded,opts=inline]
- *Parameters*
- `geomA`::
- Expression of type `geo_point`, `cartesian_point`, `geo_shape` or `cartesian_shape`. If `null`, the function returns `null`.
- `geomB`::
- Expression of type `geo_point`, `cartesian_point`, `geo_shape` or `cartesian_shape`. If `null`, the function returns `null`.
- The second parameter must also have the same coordinate system as the first.
- This means it is not possible to combine `geo_*` and `cartesian_*` parameters.
- include::description/st_disjoint.asciidoc[]
- This is the inverse of the <<esql-st_intersects,ST_INTERSECTS>> function.
- In mathematical terms: ST_Disjoint(A, B) ⇔ A ⋂ B = ∅
- include::types/st_disjoint.asciidoc[]
- include::examples/st_disjoint.asciidoc[]
|