ST_XMIN (Lakehouse v1)
Returns the minimum longitude (X coordinate) of all points contained in the specified GEOMETRY object.
SQL Syntax
Section titled “SQL Syntax”ST_XMIN(<geometry>)Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<geometry> | The argument must be an expression of type GEOMETRY. |
Return Type
Section titled “Return Type”Double.
SQL Examples
Section titled “SQL Examples”SELECT ST_XMIN( TO_GEOMETRY( 'GEOMETRYCOLLECTION(POINT(180 10),LINESTRING(20 10,30 20,40 40),POINT EMPTY)' ) ) AS pipeline_xmin;
┌───────────────┐│ pipeline_xmin │├───────────────┤│ 20 │└───────────────┘
SELECT ST_XMIN( TO_GEOMETRY( 'GEOMETRYCOLLECTION(POINT(40 10),LINESTRING(20 10,30 20,10 40),POLYGON((40 40,20 45,45 30,40 40)))' ) ) AS pipeline_xmin;
┌───────────────┐│ pipeline_xmin │├───────────────┤│ 10 │└───────────────┘