> ## 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.

> 包含 ClickHouse 服务器 构建选项相关信息的系统表。

# system.build_options

<div id="description">
  ## 说明
</div>

包含有关 ClickHouse 服务器构建选项的信息。

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

* `name` ([String](/zh/reference/data-types)) — 构建选项名称。
* `value` ([String](/zh/reference/data-types)) — 构建选项的值。

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

```sql theme={null}
SELECT * FROM system.build_options LIMIT 5
```

```text theme={null}
┌─name─────────────┬─value─┐
│ USE_BROTLI       │ 1     │
│ USE_BZIP2        │ 1     │
│ USE_CAPNP        │ 1     │
│ USE_CASSANDRA    │ 1     │
│ USE_DATASKETCHES │ 1     │
└──────────────────┴───────┘
```
