Sqlite 的查询计划
Sqlite 是否为复杂查询创建“查询计划”? (我知道 mysql 创建一个并选择不同可用组合中最好的一个来执行查询)。有什么方法可以像我通常在 mysql 中那样获得 last_query_cost 。由于我的应用程序需要一些资源,我正在尝试从 mysql 迁移到 sqlite。
Does Sqlite create a "query plan" for the complex queries? (I know mysql creates one and chooses the best of different available combination to execute the query). Is there any way i can get last_query_cost as i usually get in mysql. i am trying to migrate from mysql to sqlite due to some resource requirement for my application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQLite 支持 EXPLAIN 关键字,与 MySQL 类似,但语法略有不同:
SQLite supports the EXPLAIN keyword, like MySQL, but syntax is slightly different: