Oracle: SELECT * FROM tablea a, tableb b WHERE a.fielda(+)=b.fieldb -- 什么是 (+)?
我不明白(+)的作用是什么! (我通过我目前正在维护的应用程序的自动更新过程“继承”了该声明)。
这是 Oracle 特定的运算符吗?它有一个我可以搜索的特殊名称吗? 在谷歌上搜索括号之间的加号有点困难:)
I cannot understand what the role of the (+) is! (I "inherited" the statement through the automated update process of an application I am maintaining at the moment).
Is this some Oracle-specific operator? Does it have a special name that I can search for?
It's kind of hard to google for a plus sign between brackets :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是一个外连接运算符(老式)。
it is an outer-join operator (old-school).