跳至主要内容

SQLite

该引擎允许将数据导入和导出到 SQLite,并支持直接从 ClickHouse 查询 SQLite 表。

创建表

    CREATE TABLE [IF NOT EXISTS] [db.]table_name
(
name1 [type1],
name2 [type2], ...
) ENGINE = SQLite('db_path', 'table')

引擎参数

  • db_path — SQLite 数据库文件的路径。
  • table — SQLite 数据库中表的名称。

使用示例

显示创建 SQLite 表的查询

SHOW CREATE TABLE sqlite_db.table2;
CREATE TABLE SQLite.table2
(
`col1` Nullable(Int32),
`col2` Nullable(String)
)
ENGINE = SQLite('sqlite.db','table2');

返回表中的数据

SELECT * FROM sqlite_db.table2 ORDER BY col1;
┌─col1─┬─col2──┐
│ 1 │ text1 │
│ 2 │ text2 │
│ 3 │ text3 │
└──────┴───────┘

另请参阅