mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
docs(system_tables): Added info about system.contributors
This commit is contained in:
parent
1fe79ad43c
commit
4be887a803
@ -91,6 +91,46 @@ The `system.columns` table contains the following columns (the column type is sh
|
||||
- `is_in_primary_key` (UInt8) — Flag that indicates whether the column is in the primary key expression.
|
||||
- `is_in_sampling_key` (UInt8) — Flag that indicates whether the column is in the sampling key expression.
|
||||
|
||||
## system.contributors {#system_contributors}
|
||||
|
||||
Contains information about contributors. Arbitrary selection.
|
||||
|
||||
Columns:
|
||||
|
||||
- `name` (String) — Contributor name.
|
||||
|
||||
**Пример**
|
||||
|
||||
```sql
|
||||
SELECT * FROM system.contributors LIMIT 10
|
||||
```
|
||||
|
||||
```text
|
||||
┌─name─────────────┐
|
||||
│ Olga Khvostikova │
|
||||
│ Max Vetrov │
|
||||
│ LiuYangkuan │
|
||||
│ svladykin │
|
||||
│ zamulla │
|
||||
│ Šimon Podlipský │
|
||||
│ BayoNet │
|
||||
│ Ilya Khomutov │
|
||||
│ Amy Krishnevsky │
|
||||
│ Loud_Scream │
|
||||
└──────────────────┘
|
||||
```
|
||||
|
||||
To find out yourself in the table, use a query:
|
||||
|
||||
```sql
|
||||
SELECT * FROM system.contributors WHERE name='Olga Khvostikova'
|
||||
```
|
||||
```text
|
||||
┌─name─────────────┐
|
||||
│ Olga Khvostikova │
|
||||
└──────────────────┘
|
||||
```
|
||||
|
||||
## system.databases
|
||||
|
||||
This table contains a single String column called 'name' – the name of a database.
|
||||
|
@ -81,6 +81,45 @@ user String — имя пользователя, которого использ
|
||||
- `is_in_primary_key` (UInt8) — флаг, показывающий включение столбца в первичный ключ.
|
||||
- `is_in_sampling_key` (UInt8) — флаг, показывающий включение столбца в ключ выборки.
|
||||
|
||||
## system.contributors {#system_contributors}
|
||||
|
||||
Содержит информацию о контрибьютерах. Выборка произвольная.
|
||||
|
||||
Столбцы:
|
||||
|
||||
- `name` (String) — Имя контрибьютера.
|
||||
|
||||
**Пример**
|
||||
|
||||
```sql
|
||||
SELECT * FROM system.contributors LIMIT 10
|
||||
```
|
||||
```text
|
||||
┌─name─────────────┐
|
||||
│ Olga Khvostikova │
|
||||
│ Max Vetrov │
|
||||
│ LiuYangkuan │
|
||||
│ svladykin │
|
||||
│ zamulla │
|
||||
│ Šimon Podlipský │
|
||||
│ BayoNet │
|
||||
│ Ilya Khomutov │
|
||||
│ Amy Krishnevsky │
|
||||
│ Loud_Scream │
|
||||
└──────────────────┘
|
||||
```
|
||||
|
||||
Чтобы найти себя в таблице, выполните запрос:
|
||||
|
||||
```sql
|
||||
SELECT * FROM system.contributors WHERE name='Olga Khvostikova'
|
||||
```
|
||||
```text
|
||||
┌─name─────────────┐
|
||||
│ Olga Khvostikova │
|
||||
└──────────────────┘
|
||||
```
|
||||
|
||||
## system.databases
|
||||
|
||||
Таблица содержит один столбец name типа String - имя базы данных.
|
||||
|
Loading…
Reference in New Issue
Block a user