Skip to main content
The engine allows to import and export data to SQLite and supports queries to SQLite tables directly from ClickHouse.

Creating a table

Engine Parameters
  • db_path — Path to SQLite file with a database.
  • table — Name of a table in the SQLite database.

Data types support

When you explicitly specify ClickHouse column types in the table definition, the following ClickHouse types can be parsed from SQLite TEXT columns: See SQLite database engine for the default type mapping.

Usage example

Shows a query creating the SQLite table:
Returns the data from the table:
See Also
Last modified on June 19, 2026