snowflake.snowpark.functions.st_y¶
- snowflake.snowpark.functions.st_y(geography_or_geometry_expression: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the Y coordinate of a POINT, or None if the input is not a POINT.
- Parameters:
geography_or_geometry_expression (ColumnOrName) – A GEOGRAPHY or GEOMETRY object representing points.
- Returns:
The Y coordinate values as floating-point numbers.
- Return type:
- Examples::