ClickHouse/docs/zh/operations/system-tables/time_zones.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
736 B
Markdown
Raw Normal View History

2022-08-26 19:07:59 +00:00
---
slug: /zh/operations/system-tables/time_zones
---
2021-10-27 07:20:12 +00:00
# system.time_zones {#system-time_zones}
包含 ClickHouse 服务器支持的时区列表. 此时区列表可能因 ClickHouse 的版本而异
列信息:
- `time_zone` (String) — List of supported time zones.
**示例**
``` 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 │
└────────────────────┘
```