SQL*Plus 中运算符的优先级

发布于 2024-09-27 15:23:58 字数 355 浏览 4 评论 0原文

如何

A - B U B - A

在 SQL*Plus 中解析?

是解析为

(A - B) U (B - A) 还是 A - (BUB) - A ?

我可以使用 Google 找到此页面,但没有说明是哪个具有更高的优先级,U-

How is

A - B U B - A

parsed in SQL*Plus?

Is it parsed as

(A - B) U (B - A) or as A - (B U B) - A ?

I could find this page using Google, but it doesn't say which has higher precedence, U or -.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

初懵 2024-10-04 15:23:58

对于 Oracle,所有 SQL 集合运算符都具有相同的优先级。
请参阅:http://www.nycinformatics.com/sql/sqlsetoperators.htm\
http://download.oracle.com/docs/ cd/A58617_01/server.804/a58225/ch3all.htm

因此,对于您的问题,顺序是:

(((A - B) U B) - A)

For Oracle, all SQL set operators have equal precedence.
See: http://www.nycinformatics.com/sql/sqlsetoperators.htm\
and http://download.oracle.com/docs/cd/A58617_01/server.804/a58225/ch3all.htm

So, for your question, the order is:

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