mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-16 12:44:42 +00:00
515 B
515 B
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:
SELECT *
FROM system.database_engines
WHERE name in ('Atomic', 'Lazy', 'Ordinary')
┌─name─────┐
│ Ordinary │
│ Atomic │
│ Lazy │
└──────────┘