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

Construct a Line from Wkt text

## Signatures

```sql theme={"system"}
ST_LineFromText (Wkt: String)
```

## Parameters

<ParamField body="Wkt" type="String" required>
  A Well-Known Text (WKT) representation of a geometry.
</ParamField>

## Return type

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

## Example

```sql theme={"system"}
SELECT ST_LineFromText('LINESTRING(1 2,3 4)')
```

```
LINESTRING (1 2, 3 4)
```
