Z
zqssoft
Unregistered / Unconfirmed
GUEST, unregistred user!
欲实现Interbase数据库的数据分页,每页显示20条记录,分为四个功能按钮分别为:<br>最前一页 上一页 下一页 最后一页<br>以下是相关SQL语句,但 上一页 和 下一页 的SQL语句不知道如何写,在此请教大家?<br><br>最前一页:<br><br>select first 20 * from table order by id;<br><br>最后一页:<br><br>select * from table order by id rows((select count(*) from table)-19)to<br>(select count(*) from table)