phalapi icon indicating copy to clipboard operation
phalapi copied to clipboard

sqlserver使用limit分页问题

Open hp628 opened this issue 6 years ago • 0 comments

sqlserver使用limit分页: $this->getORM() ->select('*') ->limit(($page - 1) * $perpage, $perpage) ->fetchAll(); 会出现偏移量不起作用的情况,返回的结果始终是($page - 1) * $perpage的条数

hp628 avatar Aug 17 '19 15:08 hp628