ST_YMIN (Lakehouse v1)
Returns the minimum latitude (Y coordinate) of all points contained in the specified GEOMETRY object.
SQL Syntax
Section titled “SQL Syntax”ST_YMIN(<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_YMIN( TO_GEOMETRY( 'GEOMETRYCOLLECTION(POINT(-180 -10),LINESTRING(-179 0, 179 30),POINT EMPTY)' ) ) AS pipeline_ymin;
┌───────────────┐│ pipeline_ymin │├───────────────┤│ -10 │└───────────────┘
SELECT ST_YMIN( TO_GEOMETRY( 'GEOMETRYCOLLECTION(POINT(180 0),LINESTRING(-60 -30, 60 30),POLYGON((40 40,20 45,45 30,40 40)))' ) ) AS pipeline_ymin;
┌───────────────┐│ pipeline_ymin │├───────────────┤│ -30 │└───────────────┘