在 SQLite 中: Select * from table1 where table1 match 'any word here' limit 10 offset 0;
我需要得到总结果数,比如 10,000
所以我应该执行另一个请求,例如: Select count(*) from table1 where table1 match 'any word here';
有更快的解决方案吗?
我搜索并没有找到。
在 SQLite 中: Select * from table1 where table1 match 'any word here' limit 10 offset 0;
我需要得到总结果数,比如 10,000
所以我应该执行另一个请求,例如: Select count(*) from table1 where table1 match 'any word here';
有更快的解决方案吗?
我搜索并没有找到。