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

> 현재 사용자가 사용할 수 있는 데이터베이스 정보가 포함된 시스템 테이블입니다.

# system.databases

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

현재 사용자가 사용할 수 있는 데이터베이스 정보를 포함합니다.

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

* `name` ([String](/ko/reference/data-types/index)) — 데이터베이스 이름.
* `engine` ([String](/ko/reference/data-types/index)) — 데이터베이스 엔진.
* `data_path` ([String](/ko/reference/data-types/index)) — 데이터 경로.
* `metadata_path` ([String](/ko/reference/data-types/index)) — 메타데이터 경로.
* `uuid` ([UUID](/ko/reference/data-types/index)) — 데이터베이스 UUID.
* `engine_full` ([String](/ko/reference/data-types/index)) — 데이터베이스 엔진의 매개변수.
* `comment` ([String](/ko/reference/data-types/index)) — 데이터베이스 주석.
* `is_external` ([UInt8](/ko/reference/data-types/index)) — 데이터베이스가 외부 데이터베이스인지 여부(즉, PostgreSQL/DataLakeCatalog).

이 시스템 테이블의 `name` 컬럼은 `SHOW DATABASES` 쿼리 구현에 사용됩니다.

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

데이터베이스를 생성합니다.

```sql title="Query" theme={null}
CREATE DATABASE test;
```

사용자가 사용할 수 있는 모든 데이터베이스를 확인하십시오.

```sql title="Query" theme={null}
SELECT * FROM system.databases;
```

```text title="Response" theme={null}
┌─name────────────────┬─engine─────┬─data_path────────────────────┬─metadata_path─────────────────────────────────────────────────────────┬─uuid─────────────────────────────────┬─engine_full────────────────────────────────────────────┬─comment─┐
│ INFORMATION_SCHEMA  │ Memory     │ /data/clickhouse_data/       │                                                                       │ 00000000-0000-0000-0000-000000000000 │ Memory                                                 │         │
│ default             │ Atomic     │ /data/clickhouse_data/store/ │ /data/clickhouse_data/store/f97/f97a3ceb-2e8a-4912-a043-c536e826a4d4/ │ f97a3ceb-2e8a-4912-a043-c536e826a4d4 │ Atomic                                                 │         │
│ information_schema  │ Memory     │ /data/clickhouse_data/       │                                                                       │ 00000000-0000-0000-0000-000000000000 │ Memory                                                 │         │
│ replicated_database │ Replicated │ /data/clickhouse_data/store/ │ /data/clickhouse_data/store/da8/da85bb71-102b-4f69-9aad-f8d6c403905e/ │ da85bb71-102b-4f69-9aad-f8d6c403905e │ Replicated('some/path/database', 'shard1', 'replica1') │         │
│ system              │ Atomic     │ /data/clickhouse_data/store/ │ /data/clickhouse_data/store/b57/b5770419-ac7a-4b67-8229-524122024076/ │ b5770419-ac7a-4b67-8229-524122024076 │ Atomic                                                 │         │
│ test                │ Atomic     │ /data/clickhouse_data/store/ │ /data/clickhouse_data/store/2a1/2a1b3c4d-5e6f-7890-abcd-ef1234567890/ │ 2a1b3c4d-5e6f-7890-abcd-ef1234567890 │ Atomic                                                 │         │
└─────────────────────┴────────────┴──────────────────────────────┴───────────────────────────────────────────────────────────────────────┴──────────────────────────────────────┴────────────────────────────────────────────────────────┴─────────┘
```
