Skip to main content

Documentation Index

Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Description

Contains the list of database engines supported by the server.

Columns

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

Example

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