Monetdb限制查询后显示的结果
我想知道是否有任何方法可以限制 monetdb 中的输出结果数量,例如在 Oracle 中使用:
.SET RETCANCEL ON
.SET RETLIMIT -1
编辑:我找到了限制输出行数的方法,在之后添加以下 sql查询:
limit 1 offset 0;
但我不确定它是否做同样的事情。这很重要,因为我正在测量不同数据库的速度,此类事情非常重要。
多谢, 谢尔希。
I would like to know if there is any way of limiting the number of output results in monetdb, like it's done in Oracle for example, using:
.SET RETCANCEL ON
.SET RETLIMIT -1
EDIT: I have found the way of limiting the number of the output rows adding the following sql after query:
limit 1 offset 0;
But I'm not sure if it does the same thing.. It's important because I'm measuring the speed of different databases and such kind of things are quite important.
Thanks a lot,
Serhiy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来
limit 1 offset 0;
可以完成这项工作。Seems like
limit 1 offset 0;
does the job.