Sqlite3显示行数

时间:2014-11-19 23:01:53

标签: sqlite

在MySQL中,当我做出选择时,会有一个摘要告诉我选择了多少行

mysql> select * from frank;
+--------------------------------------------+------------+
| id                                         | numeric_id |
+--------------------------------------------+------------+
| home::sdfsdf                               |          2 |
| home::asfd                                 |          1 |
| home::asdf                                 |          6 |
| local::/home/sdf                           |          5 |
+--------------------------------------------+------------+
4 rows in set (0.01 sec)  <-- See! See! Here it is!

在SQLite3的命令行实用程序中,没有这样的摘要。

sqlite> select * from frank;
id|numeric_id
home::sdfsdf|2|
home::asfd|1|
home::asdf|6|
local::/home/sdf|5|

这让我感到难过,因为我想知道我的选择中有多少行。

我知道使用.header打开列标题,是否还有某种.summary

1 个答案:

答案 0 :(得分:0)

sqlite3 shell没有这样的功能。