> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-fix-nav-issues.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ClickHouse 서버에서 지원하는 시간대 목록을 담고 있는 시스템 테이블입니다.

# system.time_zones

<div id="description">
  ## 설명
</div>

ClickHouse 서버에서 지원하는 시간대 목록입니다. 이 목록은 ClickHouse 버전에 따라 달라질 수 있습니다.

<div id="columns">
  ## 컬럼
</div>

* `time_zone` ([String](/ko/reference/data-types)) — 지원되는 시간대 목록입니다.

<div id="example">
  ## 예시
</div>

```sql theme={null}
SELECT * FROM system.time_zones LIMIT 10
```

```text theme={null}
┌─time_zone──────────┐
│ Africa/Abidjan     │
│ Africa/Accra       │
│ Africa/Addis_Ababa │
│ Africa/Algiers     │
│ Africa/Asmara      │
│ Africa/Asmera      │
│ Africa/Bamako      │
│ Africa/Bangui      │
│ Africa/Banjul      │
│ Africa/Bissau      │
└────────────────────┘
```
