UPDATE 语句中的 Hsqldb rownum

发布于 2024-11-19 16:44:45 字数 272 浏览 3 评论 0原文

你好,我对这个查询有疑问:

更新示例设置 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 技术交流群。

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

发布评论

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

评论(1

世界如花海般美丽 2024-11-26 16:44:45

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.

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