ClickHouse/docs/zh/operations/system-tables/functions.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1.5 KiB
Markdown
Raw Normal View History

2022-08-26 19:07:59 +00:00
---
slug: /zh/operations/system-tables/functions
---
2021-04-29 03:46:32 +00:00
# system.functions {#system-functions}
2020-06-22 08:45:22 +00:00
2021-04-29 03:46:32 +00:00
包含有关常规函数和聚合函数的信息。
2020-06-22 08:45:22 +00:00
列:
- `name`(`String`) The name of the function.
- `is_aggregate`(`UInt8`) — Whether the function is aggregate.
2021-04-29 03:46:32 +00:00
**举例**
```
SELECT * FROM system.functions LIMIT 10;
```
```
┌─name─────────────────────┬─is_aggregate─┬─case_insensitive─┬─alias_to─┐
│ sumburConsistentHash │ 0 │ 0 │ │
│ kostikConsistentHash │ 0 │ 0 │ │
2021-04-29 03:46:32 +00:00
│ demangle │ 0 │ 0 │ │
│ addressToLine │ 0 │ 0 │ │
│ JSONExtractRaw │ 0 │ 0 │ │
│ JSONExtractKeysAndValues │ 0 │ 0 │ │
│ JSONExtract │ 0 │ 0 │ │
│ JSONExtractString │ 0 │ 0 │ │
│ JSONExtractFloat │ 0 │ 0 │ │
│ JSONExtractInt │ 0 │ 0 │ │
└──────────────────────────┴──────────────┴──────────────────┴──────────┘
2021-07-29 15:20:55 +00:00
10 rows in set. Elapsed: 0.002 sec.
2021-04-29 03:46:32 +00:00
```