Skip to main content
Skip to main content
Edit this page

system.database_engines

Description

Contains the list of database engines supported by the server.

Columns

  • name (String) — The name of database engine.

Example

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