跳转至
🎉 SedonaDB 0.4.0 已正式发布!🗺️ 新增 Python DataFrame API、R dplyr 接口、Geography 支持及 GPU 加速空间连接。阅读发布博客 →

ST_Intersects

Introduction: Return true if A intersects B

ST_Intersects returning true ST_Intersects returning false

Format: ST_Intersects (A: Geometry, B: Geometry)

Return type: Boolean

Since: v1.2.0

Example:

SELECT ST_Intersects(ST_GeomFromWKT('LINESTRING(-43.23456 72.4567,-43.23456 72.4568)'), ST_GeomFromWKT('POINT(-43.23456 72.4567772)'))

Output:

true