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

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

44 lines
1003 B
Markdown
Raw Normal View History

2022-08-26 19:07:59 +00:00
---
slug: /zh/operations/system-tables/contributors
---
2021-12-25 13:52:15 +00:00
# system.contributors {#system-contributors}
2020-06-22 08:45:22 +00:00
2021-12-26 09:33:58 +00:00
此系统表包含有关贡献者的信息。排列顺序是在查询执行时随机生成的。
2020-06-22 08:45:22 +00:00
列:
2021-12-25 13:52:15 +00:00
- `name` (String) — git 日志中的贡献者 (作者) 名字。
2020-06-22 08:45:22 +00:00
**示例**
``` 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 │
└──────────────────┘
```
2021-12-25 13:52:15 +00:00
要在表中找到你自己,请这样查询:
2020-06-22 08:45:22 +00:00
``` sql
SELECT * FROM system.contributors WHERE name = 'Olga Khvostikova'
```
``` text
┌─name─────────────┐
│ Olga Khvostikova │
└──────────────────┘
```