mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 04:32:33 +00:00
32 lines
757 B
Markdown
32 lines
757 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 │
|
|
└────────────────────┘
|
|
```
|