ClickHouse/docs/en/operations/system-tables/database_engines.md
Bharat Nallan Chakravarthy 2996c8167f add docs
2023-12-30 20:48:35 -08:00

27 lines
515 B
Markdown

---
slug: /en/operations/system-tables/database_engines
---
# database_engines
Contains the list of database engines supported by the server.
This table contains the following columns (the column type is shown in brackets):
- `name` (String) — The name of database engine.
Example:
``` sql
SELECT *
FROM system.database_engines
WHERE name in ('Atomic', 'Lazy', 'Ordinary')
```
``` text
┌─name─────┐
│ Ordinary │
│ Atomic │
│ Lazy │
└──────────┘
```