如何限制 Interbase 7.1 返回的记录数量?

发布于 2024-07-25 14:06:16 字数 117 浏览 8 评论 0原文

我们有一个 Interbase 7.1 数据库,我试图弄清楚如何将查询返回的记录数限制为 1。我实际上只需要知道最后一条记录的事件代码,其中查询将返回数百条如果我不能做某种限制的话,记录。

提前致谢!

We have an Interbase 7.1 database and I'm trying to figure out how to limit the number of records returned by the query to just 1. I really only need to know an event code from the last record, in which the query will return hundreds of records if I cannot do some kind of limit.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

jJeQQOZ5 2024-08-01 14:06:16

我想我明白了。 需要做这样的事情......

SELECT * FROM table ORDER BY col ROWS 1

I think I figured it out. Needed to do something like this...

SELECT * FROM table ORDER BY col ROWS 1
深海不蓝 2024-08-01 14:06:16

根据接受的答案:

SELECT * FROM table ORDER BY col ROWS 1

将仅返回一个结果。
还有其他几个可用的行限制选项:

ROWS n 返回结果集的前 n 行,如果与 PERCENT 一起使用则返回百分比 n 
  ROWS m TO n 返回 m 到 n 行(含)或第 m 到第 n 个百分比 
  ROWS n BY p 返回前 n 行中的每第 p 行 
   

这对于分页结果特别方便。

来自 InterBase 产品文档 页面上的嵌入式 SQL 指南:

As per the accepted answer:

SELECT * FROM table ORDER BY col ROWS 1

Will return just one result.
There are also several other row limiting options available:

ROWS n        Returns the first n rows of the result set, or n percent if used with PERCENT
ROWS m TO n   Returns rows m through n, inclusive or the mth to nth percent
ROWS n BY p   Returns every pth row of the first n rows

This is particularly handy for paged results.

From the Embedded SQL Guide on the InterBase Product Documentation page:

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