sql从分页中获取列表

发布于 2024-10-06 22:00:31 字数 67 浏览 3 评论 0原文

我的列表页面上有一个用户列表。数据需要分页,那么如何让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

清引 2024-10-13 22:00:31

Informix 具有与 LIMIT 和 OFFSET 类似但不同的子句:

SELECT SKIP n LIMIT m ...

您可以使用 FIRST 代替 LIMIT。

请参阅 IDS 11.70 信息中心,或早期版本 IDS 的类似位置。

Informix has clauses analogous to, but different from, LIMIT and OFFSET:

SELECT SKIP n LIMIT m ...

You can use FIRST in place of LIMIT.

See the IDS 11.70 InfoCenter, or similar locations for earlier versions of IDS.

仄言 2024-10-13 22:00:31

既然您指出您正在使用 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文