天天看點

Access查詢實作Mysql的 limit 查詢

Access 不支援 limit 查詢.

不過可以變通一下也能實作.

從 page 處取出 pageInt 條記錄

字段id 自動編号

PHP代碼

"select * from(select top $pageInt * from (select top " . ($page + $pageInt) . " * from table order by id asc) order by id desc) order by id asc"

{192.168.2.102}