> ## Documentation Index
> Fetch the complete documentation index at: https://docs.morph-data.io/llms.txt
> Use this file to discover all available pages before exploring further.

# config

以下のようにSQLの中にjinjaで設定値を書くことができます。

```sql theme={"dark"}
{{
	config(
		name="test",
		description="this is test sql statement",
		connection="your_connection_slug",
	)
}}

select 1 as test
```

## Parameters

<ParamField body="name" type="string" default="SQLファイル名">
  処理名, 他のファイルから呼び出す時のエイリアスとしても使える。
</ParamField>

<ParamField body="description" type="string">
  処理の説明を記述できる
</ParamField>

<ParamField body="connection" type="string" default="morph_project.ymlで設定したdefault_connection">
  画面で登録したbuiltin以外のconnectionの向き先 (optional)

  ※ 指定をしない場合はbuilt-in postgresqlに設定されます。
</ParamField>
