ST_Y (Lakehouse v2)
Returns the Y coordinate (latitude) of a point geometry.
Analyze Syntax
Section titled “Analyze Syntax”func.st_y(<point>)Analyze Examples
Section titled “Analyze Examples”func.st_y(func.st_point(1.5, 2.5))
┌─────┐│ 2.5 │└─────┘SQL Syntax
Section titled “SQL Syntax”ST_Y(<point>)SQL Examples
Section titled “SQL Examples”SELECT ST_Y(ST_POINT(1.5, 2.5));
┌─────┐│ 2.5 │└─────┘