> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> 包含贡献者信息的系统表。

# system.contributors

<div id="description">
  ## 描述
</div>

包含贡献者的信息。查询执行时，其顺序是随机的。

<div id="columns">
  ## 列
</div>

* `name` ([String](/zh/reference/data-types)) — git log 中的贡献者 (作者) 姓名。

<div id="example">
  ## 示例
</div>

```sql theme={null}
SELECT * FROM system.contributors LIMIT 10
```

```text theme={null}
┌─name─────────────┐
│ Olga Khvostikova │
│ Max Vetrov       │
│ LiuYangkuan      │
│ svladykin        │
│ zamulla          │
│ Šimon Podlipský  │
│ BayoNet          │
│ Ilya Khomutov    │
│ Amy Krishnevsky  │
│ Loud_Scream      │
└──────────────────┘
```

若要在表中找到你自己的记录，请使用以下查询：

```sql theme={null}
SELECT * FROM system.contributors WHERE name = 'Olga Khvostikova'
```

```text theme={null}
┌─name─────────────┐
│ Olga Khvostikova │
└──────────────────┘
```
