Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有任何方法可以限制 monetdb 中的输出结果数量,例如在 Oracle 中使用:
.SET RETCANCEL ON .SET RETLIMIT -1
编辑:我找到了限制输出行数的方法,在查询后添加以下 sql:
limit 1 offset 0;
但我不确定它是否做同样的事情。这很重要,因为我正在测量不同数据库的速度,而这类事情非常重要。
非常感谢,Serhiy。
看起来像limit 1 offset 0;做这项工作。