Monetdb限制查询后显示的结果

发布于 2024-10-21 03:59:40 字数 271 浏览 3 评论 0原文

我想知道是否有任何方法可以限制 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 技术交流群。

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

发布评论

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

评论(1

我三岁 2024-10-28 03:59:40

看起来 limit 1 offset 0; 可以完成这项工作。

Seems like limit 1 offset 0; does the job.

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