mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
1.1 KiB
1.1 KiB
slug | sidebar_position | sidebar_label | title |
---|---|---|---|
/ja/sql-reference/table-functions/sqlite | 185 | sqlite | sqlite |
SQLite データベースに保存されたデータに対してクエリを実行できるようにします。
構文
sqlite('db_path', 'table_name')
引数
返される値
- 元の
SQLite
テーブルと同じカラムを持つテーブルオブジェクト。
例
クエリ:
SELECT * FROM sqlite('sqlite.db', 'table1') ORDER BY col2;
結果:
┌─col1──┬─col2─┐
│ line1 │ 1 │
│ line2 │ 2 │
│ line3 │ 3 │
└───────┴──────┘
関連項目
- SQLite テーブルエンジン