> ## 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 table containing a list of time zones that are supported by the ClickHouse server.

# system.time_zones

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

Contains a list of time zones that are supported by the ClickHouse server. This list of timezones might vary depending on the version of ClickHouse.

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

* `time_zone` ([String](/reference/data-types/index)) — List of supported time zones.

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

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