-1

如何将此分页查询转换为与 MySQL 兼容:

'SELECT *
      FROM ( select p.*, ROWNUM rnum
      FROM ( select * from employees ) p
      WHERE ROWNUM <= '.(($current_page)*$perpage).' ) where ROWNUM  > '.(($current_page -1)*$perpage)';

此查询在 PHP 脚本中使用并且可以正常工作。

4

1 回答 1

1

您正在寻找 mysql 中的限制

 limit ($current_page -1)*$perpage , ($current_page)*$perpage
于 2013-09-24T06:24:37.690 回答