2022-08-28 13:53:52 +00:00
|
|
|
---
|
2022-08-28 13:58:27 +00:00
|
|
|
slug: /en/operations/system-tables/time_zones
|
2022-08-28 21:34:50 +00:00
|
|
|
title: time_zones
|
2022-08-28 13:53:52 +00:00
|
|
|
---
|
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:
|
|
|
|
|
2023-04-19 15:55:29 +00:00
|
|
|
- `time_zone` (String) — List of supported time zones.
|
2020-08-23 04:35:24 +00:00
|
|
|
|
|
|
|
**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 │
|
|
|
|
└────────────────────┘
|
|
|
|
```
|