如何限制 Interbase 7.1 返回的记录数量?
我们有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想我明白了。 需要做这样的事情......
I think I figured it out. Needed to do something like this...
根据接受的答案:
将仅返回一个结果。
还有其他几个可用的行限制选项:
这对于分页结果特别方便。
来自 InterBase 产品文档 页面上的嵌入式 SQL 指南:
As per the accepted answer:
Will return just one result.
There are also several other row limiting options available:
This is particularly handy for paged results.
From the Embedded SQL Guide on the InterBase Product Documentation page: