跳转至
🎉 Apache Sedona 1.9.1 已正式发布!🗺️ 新增 Geography SQL 函数、Box2D 与 Box3D 类型、栅格 Python UDF 等。查看发布说明 →

ST_Reverse

Introduction: Return the geometry with vertex order reversed

ST_Reverse

Format: ST_Reverse (A: Geometry)

Return type: Geometry

Since: v1.2.1

Example:

SELECT ST_Reverse(ST_GeomFromWKT('LINESTRING(0 0, 1 2, 2 4, 3 6)'))

Output:

LINESTRING (3 6, 2 4, 1 2, 0 0)