ClickHouse/docs/ja/engines/table-engines/integrations/sqlite.md
2024-11-18 11:58:58 +09:00

1.4 KiB

slug sidebar_position sidebar_label
/ja/engines/table-engines/integrations/sqlite 185 SQLite

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

関連項目