2022-04-09 13:29:05 +00:00
|
|
|
# time_zones {#system-time_zones}
|
2020-08-23 04:35:24 +00:00
|
|
|
|
|
|
|
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 │
|
|
|
|
└────────────────────┘
|
|
|
|
```
|
|
|
|
|
2021-09-19 20:05:54 +00:00
|
|
|
[Original article](https://clickhouse.com/docs/en/operations/system-tables/time_zones) <!--hide-->
|