> ## 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](/ja/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     │
└──────────┘
```
