ClickHouse/docs/en/operations/system-tables/time_zones.md
2022-08-28 17:34:50 -04:00

34 lines
859 B
Markdown

---
slug: /en/operations/system-tables/time_zones
title: time_zones
---
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.
Columns:
- `time_zone` (String) — List of supported time zones.
**Example**
``` sql
SELECT * FROM system.time_zones LIMIT 10
```
``` text
┌─time_zone──────────┐
│ Africa/Abidjan │
│ Africa/Accra │
│ Africa/Addis_Ababa │
│ Africa/Algiers │
│ Africa/Asmara │
│ Africa/Asmera │
│ Africa/Bamako │
│ Africa/Bangui │
│ Africa/Banjul │
│ Africa/Bissau │
└────────────────────┘
```
[Original article](https://clickhouse.com/docs/en/operations/system-tables/time_zones) <!--hide-->