Skip to content
🎉 Apache Sedona 1.8.1 is now available! Check out the new features and improvements.

ST_Equals

Introduction: Return true if A equals to B

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

Since: v1.5.0

Example:

SELECT ST_Equals(ST_GeomFromWKT('LINESTRING(0 0,10 10)'), ST_GeomFromWKT('LINESTRING(0 0,5 5,10 10)'))

Output:

true