select * from (
select t.*,rownum from (
select * from house order by pubdate) t )
where rownum>(currPage-1)*2 and rownum<=currPage*2我在数据库里直接查的,只有把当前页currPage设为1的时候能查出数据,1以外的其他数就查不出来了。哪里错了啊?
添加回答
举报
0/150
提交
取消