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

> Formフォーマットに関するドキュメント

# Form

| 入力 | 出力 | エイリアス |
| -- | -- | ----- |
| ✔  | ✗  |       |

<div id="description">
  ## 説明
</div>

`Form` フォーマットは、データが `key1=value1&key2=value2` のように表される application/x-www-form-urlencoded 形式の単一レコードを読み取るために使用できます。

<div id="example-usage">
  ## 使用例
</div>

`user_files` パスに、一部がURLエンコードされたデータを含むファイル `data.tmp` が配置されている場合:

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