メインコンテンツまでスキップ
メインコンテンツまでスキップ

system.functions

含まれている情報は、通常の関数と集約関数に関するものです。

カラム:

  • name (String) – 関数の名前。
  • is_aggregate (UInt8) — 関数が集約関数であるかどうか。
  • case_insensitive, (UInt8) - 関数名が大文字小文字を区別せずに使用できるかどうか。
  • alias_to, (String) - 関数名がエイリアスである場合の元の関数名。
  • create_query, (String) - 使用されていない。
  • origin, (Enum8) - 使用されていない。
  • description, (String) - 関数が何をするのかの高レベルの説明。
  • syntax, (String) - 関数のシグネチャ。
  • arguments, (String) - 関数が取る引数。
  • returned_value, (String) - 関数が返すもの。
  • examples, (String) - 関数の使用例。
  • introduced_in, (String) - 関数が初めて導入された ClickHouse バージョン。
  • categories, (String) - 関数のカテゴリ。

SELECT name, is_aggregate, is_deterministic, case_insensitive, alias_to FROM system.functions LIMIT 5;
┌─name─────────────────────┬─is_aggregate─┬─is_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.