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

> 通常の関数および集約関数の情報を含むシステムテーブル。

# system.functions

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

通常の関数および集約関数に関する情報が含まれます。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types)) — 関数名。
* `is_aggregate` ([UInt8](/ja/reference/data-types)) — その関数が 集約関数 かどうか。
* `case_insensitive` ([UInt8](/ja/reference/data-types)) — 関数名を大文字と小文字を区別せずに使用できるかどうか。
* `alias_to` ([String](/ja/reference/data-types)) — 関数名がエイリアスである場合の元の関数名。
* `create_query` ([String](/ja/reference/data-types)) — 廃止された。
* `origin` ([Enum8('System' = 0, 'SQLUserDefined' = 1, 'ExecutableUserDefined' = 2, 'WasmUserDefined' = 3)](/ja/reference/data-types)) — 廃止された。
* `description` ([String](/ja/reference/data-types)) — 関数の動作の概要。
* `syntax` ([String](/ja/reference/data-types)) — 関数のシグネチャ。
* `arguments` ([String](/ja/reference/data-types)) — 関数の引数。
* `parameters` ([String](/ja/reference/data-types)) — 関数のパラメータ (集約関数 のみ) 。
* `returned_value` ([String](/ja/reference/data-types)) — 関数の戻り値。
* `examples` ([String](/ja/reference/data-types)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types)) — その関数が最初に導入された ClickHouse のバージョン。
* `categories` ([String](/ja/reference/data-types)) — 関数のカテゴリ。
* `deterministic` ([Nullable(UInt8)](/ja/reference/data-types)) — 同じ引数に対して常に同じ結果を返すかどうか。不明な場合は NULL (例: 集約関数 または user-defined function) 。
* `higher_order` ([Nullable(UInt8)](/ja/reference/data-types)) — その関数が高階関数かどうか。つまり、少なくとも 1 つのラムダ式を引数として受け取るかどうか (例: arrayMap, arrayFilter, mapApply) 。不明な場合は NULL。

<div id="example">
  ## 例
</div>

```sql title="Query" theme={null}
 SELECT name, is_aggregate, deterministic, case_insensitive, alias_to FROM system.functions LIMIT 5;
```

```text title="Response" theme={null}
┌─name─────────────────────┬─is_aggregate─┬─deterministic─┬─case_insensitive─┬─alias_to─┐
│ BLAKE3                   │            0 │                1 │                0 │          │
│ sipHash128Reference      │            0 │                1 │                0 │          │
│ mapExtractKeyLike        │            0 │                1 │                0 │          │
│ sipHash128ReferenceKeyed │            0 │                1 │                0 │          │
│ mapPartialSort           │            0 │                1 │                0 │          │
└──────────────────────────┴──────────────┴──────────────────┴──────────────────┴──────────┘

5 rows in set. Elapsed: 0.002 sec.
```
