实际上,我需要做分页。
如何在CakePHP中使用一堆数组数据进行分页?
对于紧急修复,我使用JavaScript分页处理了我的代码。是否只能使用该模型?我们不能对数组数据进行分页吗?
答案 0 :(得分:1)
在Oracle 12c或更高版本中,您可以写:
select *
from table
order by id desc
fetch first 1 row only
答案 1 :(得分:0)
尝试
select * from YourtableName where rowid in (select max(rowid) from YourtableName)