2022-08-28 13:53:52 +00:00
|
|
|
|
---
|
2022-08-28 13:58:27 +00:00
|
|
|
|
slug: /en/operations/system-tables/functions
|
2022-08-28 13:53:52 +00:00
|
|
|
|
---
|
2022-06-02 10:55:18 +00:00
|
|
|
|
# functions
|
2020-06-18 08:24:31 +00:00
|
|
|
|
|
|
|
|
|
Contains information about normal and aggregate functions.
|
|
|
|
|
|
|
|
|
|
Columns:
|
|
|
|
|
|
|
|
|
|
- `name`(`String`) – The name of the function.
|
|
|
|
|
- `is_aggregate`(`UInt8`) — Whether the function is aggregate.
|
2020-08-06 08:50:29 +00:00
|
|
|
|
|
2020-12-03 19:27:55 +00:00
|
|
|
|
**Example**
|
|
|
|
|
|
|
|
|
|
```sql
|
|
|
|
|
SELECT * FROM system.functions LIMIT 10;
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```text
|
2022-03-12 06:24:31 +00:00
|
|
|
|
┌─name──────────────────┬─is_aggregate─┬─case_insensitive─┬─alias_to─┬─create_query─┬─origin─┐
|
|
|
|
|
│ logTrace │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ aes_decrypt_mysql │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ aes_encrypt_mysql │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ decrypt │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ encrypt │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ toBool │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ windowID │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ hopStart │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ hop │ 0 │ 0 │ │ │ System │
|
|
|
|
|
│ snowflakeToDateTime64 │ 0 │ 0 │ │ │ System │
|
|
|
|
|
└───────────────────────┴──────────────┴──────────────────┴──────────┴──────────────┴────────┘
|
2020-12-03 19:27:55 +00:00
|
|
|
|
|
2021-07-29 15:20:55 +00:00
|
|
|
|
10 rows in set. Elapsed: 0.002 sec.
|
2021-06-24 12:47:02 +00:00
|
|
|
|
```
|