Back to Clickhouse

system.database_engines

docs/en/operations/system-tables/database_engines.md

26.4.1.1-new433 B
Original Source

Contains the list of database engines supported by the server.

This table contains the following columns (the column type is shown in brackets):

<!--AUTOGENERATED_START--> <!--AUTOGENERATED_END-->

Example:

sql
SELECT *
FROM system.database_engines
WHERE name IN ('Atomic', 'Lazy', 'Ordinary')
text
┌─name─────┐
│ Ordinary │
│ Atomic   │
│ Lazy     │
└──────────┘