pagehelper / Mybatis-PageHelper

Mybatis通用分页插件
https://mybatis.io
MIT License
12.22k stars 3.13k forks source link

count优化问题 #146

Closed dengchq closed 6 years ago

dengchq commented 6 years ago

为什么我分页时获取count总数时是select count(0) from (select * from table ....),这样有些查询效率很低,有其他的解决办法么?

abel533 commented 6 years ago

特殊SQL(查询列有函数)或者无法解析时会用嵌套方式。

dengchq commented 6 years ago

那关于这个能不能优化呢,或者自定义 @abel533

abel533 commented 6 years ago

可以自定义,看这里:https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/Changelog.md#504---2017-08-01

dengchq commented 6 years ago

谢谢 @abel533