> ## 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_Multi

Returns a MultiGeometry object based on the geometry input.
ST\_Multi is basically an alias for ST\_Collect with one geometry.

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

## Signatures

```sql theme={"system"}
ST_Multi(geom: Geometry)
```

## Parameters

<ParamField body="geom" type="Geometry" required>
  The input geometry.
</ParamField>

## Return type

<ResponseField type="Geometry">
  The resulting geometry.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_Multi(ST_GeomFromText('POINT(1 1)'))
```

```
MULTIPOINT (1 1)
```
