> ## 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.

> 서버가 지원하는 데이터베이스 엔진 목록을 담고 있는 시스템 테이블.

# system.database_engines

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

서버에서 지원하는 데이터베이스 엔진 목록입니다.

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

* `name` ([String](/ko/reference/data-types)) — 데이터베이스 엔진 이름입니다.

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

```sql title="Query" theme={null}
SELECT *
FROM system.database_engines
WHERE name IN ('Atomic', 'Lazy', 'Ordinary')
```

```text title="Response" theme={null}
┌─name─────┐
│ Ordinary │
│ Atomic   │
│ Lazy     │
└──────────┘
```
