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