ClickHouse/docs/en/operations/system-tables/database_engines.md
Bharat Nallan Chakravarthy 2996c8167f add docs
2023-12-30 20:48:35 -08:00

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