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

<div id="description">
  ## 説明
</div>

サーバーでサポートされているデータベースエンジンの一覧です。

<div id="columns">
  ## カラム
</div>

* `name` ([String](/ja/reference/data-types/index)) — データベースエンジンの名前。
* `description` ([String](/ja/reference/data-types/index)) — そのデータベースエンジンの概要説明。
* `syntax` ([String](/ja/reference/data-types/index)) — CREATE DATABASEクエリのENGINE句でデータベースエンジンをどのように指定するか。
* `examples` ([String](/ja/reference/data-types/index)) — 使用例。
* `introduced_in` ([String](/ja/reference/data-types/index)) — そのデータベースエンジンが最初に導入されたClickHouseのバージョン。形式は major.minor。
* `related` ([Array(String)](/ja/reference/data-types/index)) — 関連するデータベースエンジンの名前。

<div id="example">
  ## 例
</div>

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

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