SQLite3解释查询计划(raspberry PI)

时间:2016-07-13 06:22:49

标签: sqlite raspberry-pi

我的开发操作系统是Linux(raspberry pi)。 我安装了sqlite3,它是最新版本。

解释查询计划返回值 例如

sqlite> explain query plan select * from test_table
0|0|0|SCAN TABLE test_table (~100000 rows)

但我的结果是 :

sqlite> explain query plan select * from test_table
0|0|0|SCAN TABLE test_table

(~100000 rows)未显示。

什么是问题?感谢

1 个答案:

答案 0 :(得分:0)

documentation说:

  

警告:EXPLAIN QUERY PLAN命令返回的数据仅用于交互式调试。输出格式可能会在SQLite版本之间发生变化。

您正在使用另一个SQLite版本,输出格式确实已更改。