> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_Y

Returns Y Coordinate of given Point, null otherwise.

<img src="https://mintcdn.com/wherobots/wLm_IRUSNlHZTHJP/images/sql-functions/ST_Y/ST_Y.svg?fit=max&auto=format&n=wLm_IRUSNlHZTHJP&q=85&s=240f7e849139f7bdbaa916ffa0d1f40f" alt="ST_Y" width="500" height="300" data-path="images/sql-functions/ST_Y/ST_Y.svg" />

## Signatures

```sql theme={"system"}
ST_Y(pointA: Point)
```

## Parameters

<ParamField body="pointA" type="Point" required>
  The input point.
</ParamField>

## Return type

<ResponseField type="Double">
  A numeric value.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_Y(ST_Point(0.0, 25.0))
```

```
25.0
```
