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

> System table containing a list of database engines supported by the server.

# system.database_engines

<h2 id="description">
  Description
</h2>

Contains the list of database engines supported by the server.

<h2 id="columns">
  Columns
</h2>

* `name` ([String](/reference/data-types)) — The name of database engine.

<h2 id="example">
  Example
</h2>

```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     │
└──────────┘
```
