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

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

列出了 ClickHouse 服务器 支持的时区。该列表可能会因 ClickHouse 版本而异。

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

* `time_zone` ([String](/zh/reference/data-types)) — 支持的时区列表。

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

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

```text theme={null}
┌─time_zone──────────┐
│ Africa/Abidjan     │
│ Africa/Accra       │
│ Africa/Addis_Ababa │
│ Africa/Algiers     │
│ Africa/Asmara      │
│ Africa/Asmera      │
│ Africa/Bamako      │
│ Africa/Bangui      │
│ Africa/Banjul      │
│ Africa/Bissau      │
└────────────────────┘
```
