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

> System table containing information about contributors.

# system.contributors

<h2 id="description">
  Description
</h2>

Contains information about contributors. The order is random at query execution time.

<h2 id="columns">
  Columns
</h2>

* `name` ([String](/reference/data-types)) — Contributor (author) name from git log.

<h2 id="example">
  Example
</h2>

```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      │
└──────────────────┘
```

To find out yourself in the table, use a query:

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

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