functions
包含关于普通函数和聚合函数的信息。
Columns
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) - 函数的示例用法。categories
, (String) - 函数的类别。
Example
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.