sql从分页中获取列表
我的列表页面上有一个用户列表。数据需要分页,那么如何让 SQL 为我分页数据(即从表中以 10 条记录为一组提取数据)?
I have a user list table on my listing page. The data needs to be paged, so how can I make SQL page the data for me (ie. pull the data in sets of 10 records from the table)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Informix 具有与 LIMIT 和 OFFSET 类似但不同的子句:
您可以使用 FIRST 代替 LIMIT。
请参阅 IDS 11.70 信息中心,或早期版本 IDS 的类似位置。
Informix has clauses analogous to, but different from, LIMIT and OFFSET:
You can use FIRST in place of LIMIT.
See the IDS 11.70 InfoCenter, or similar locations for earlier versions of IDS.
既然您指出您正在使用 Informix,那么
LIMIT
子句将不起作用。您是否能够将您的选择放入数组中并从数组中调用所需的数据?Now that you pointed out that you are using Informix, the
LIMIT
clause will not work. Are you able to instead place your selection into an array and call for the desired data from the array?