mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
27 lines
515 B
Markdown
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 │
|
||
|
└──────────┘
|
||
|
```
|