> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Documentation for the Form format

# Form

| Input | Output | Alias |
| ----- | ------ | ----- |
| ✔     | ✗      |       |

<h2 id="description">
  Description
</h2>

The `Form` format can be used to read a single record in the application/x-www-form-urlencoded format
in which data is formatted as `key1=value1&key2=value2`.

<h2 id="example-usage">
  Example usage
</h2>

Given a file `data.tmp` placed in the `user_files` path with some URL encoded data:

```text title="data.tmp" theme={null}
t_page=116&c.e=ls7xfkpm&c.tti.m=raf&rt.start=navigation&rt.bmr=390%2C11%2C10
```

```sql title="Query" theme={null}
SELECT * FROM file(data.tmp, Form) FORMAT vertical;
```

```response title="Response" theme={null}
Row 1:
──────
t_page:   116
c.e:      ls7xfkpm
c.tti.m:  raf
rt.start: navigation
rt.bmr:   390,11,10
```

<h2 id="format-settings">
  Format settings
</h2>
