⌘+k ctrl+k
1.1.3 (stable)
Search Shortcut cmd + k | ctrl + k
SQLite Import

要直接在SQLite文件上运行查询,需要sqlite扩展。

Installation and Loading

扩展可以使用INSTALL SQL命令进行安装。这只需要运行一次。

INSTALL sqlite;

要加载sqlite扩展以供使用,请使用LOAD SQL命令:

LOAD sqlite;

Usage

安装SQLite扩展后,可以使用sqlite_scan函数从SQLite查询表:

-- Scan the table "tbl_name" from the SQLite file "test.db"
SELECT * FROM sqlite_scan('test.db', 'tbl_name');

或者,可以使用ATTACH命令附加整个文件。这允许您查询存储在SQLite数据库文件中的所有表,就像它们是常规数据库一样。

-- Attach the SQLite file "test.db"
ATTACH 'test.db' AS test (TYPE sqlite);
-- The table "tbl_name" can now be queried as if it is a regular table
SELECT * FROM test.tbl_name;
-- Switch the active database to "test"
USE test;
-- List all tables in the file
SHOW TABLES;

更多信息请参阅SQLite扩展文档