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

> Form 포맷 문서

# Form

| 입력 | 출력 | 별칭 |
| -- | -- | -- |
| ✔  | ✗  |    |

<div id="description">
  ## 설명
</div>

`Form` 포맷은 데이터가 `key1=value1&key2=value2`처럼 포맷되는 application/x-www-form-urlencoded 형식의 단일 레코드를 읽는 데 사용할 수 있습니다.

<div id="example-usage">
  ## 사용 예시
</div>

URL 인코딩된 일부 데이터가 들어 있는 파일 `data.tmp`가 `user_files` 경로에 있다고 가정합니다:

```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
```

<div id="format-settings">
  ## 포맷 설정
</div>
