UPDATE 语句中的 Hsqldb rownum
你好,我对这个查询有疑问:
更新示例设置 FLAG = 1,其中 FLAG = 0 且 rownum < 10;
该查询在 Oracle 中有效(它恰好更新了 9 行),但在我的 hsqldb 测试用例中无效(该语句更新了 EXAMPLETABLE 中的所有行)。
我也在用 设置数据库 SQL 语法 ORA TRUE; 在 hsqlDb 生成脚本中。 我仅在内存中使用 hsqlDb 。
hsqlDb 中没有实现此功能吗?
谢谢, 罗伯托
Hallo, I've a problem with this query :
update EXAMPLETABLE set FLAG = 1 where FLAG = 0 and rownum < 10;
This query is working in Oracle (it updates exactly 9 rows), but not in my testcase with hsqldb (the statement updates ALL the rows in EXAMPLETABLE).
I'm using also
SET DATABASE SQL SYNTAX ORA TRUE;
in hsqlDb generation script.
I'm using hsqlDb in-memory only.
Is this feature not implemented in hsqlDb?
Thanks,
Roberto
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HSQLDB 中未实现此功能。不久的将来可能会在 ORACLE 模式下得到支持。 (更新:现已支持2.2.6及更高版本)。
这种说法存在原则性问题。由于行可以按任何顺序返回,因此可以对具有给定 FLAG 设置的几乎任意行子集执行更新。
This feature is not implemented in HSQLDB. It may be supported in ORACLE mode in the near future. (update: now supported in 2.2.6 and later versions).
There is a problem in principle about this type of statement. As the rows could be returned in any order, an update is performed on an almost arbitrary subset of rows with the given FLAG setting.