返回顶部
首页 > 资讯 > 错误编码 >ORA-30365: left relation in the JOIN KEY clause cannot be same as right ORACLE 报错 故障修复 远程处理
  • 270
分享到

ORA-30365: left relation in the JOIN KEY clause cannot be same as right ORACLE 报错 故障修复 远程处理

报错故障left 2023-11-04 23:11:39 270人浏览 薄情痞子
摘要

文档解释 ORA-30365: left relation in the JOIN KEY clause cannot be same as right Cause: The relation of the child columns on

文档解释

ORA-30365: left relation in the JOIN KEY clause cannot be same as right

Cause: The relation of the child columns on the left side of the JOIN KEY clause was the same as that of the parent level on the right side.

Action: Remove the JOIN KEY clause. It is not required or allowed when the child and the parent are in the same relation.

ORA-30365 错误表明,在JOIN KEY子句中,左边的关系不能和右边的关系相同。

官方解释

ORA-30365 异常表示在 JOIN 子句中左边指定的表与右边指定的表相同。

常见案例

假设有两个表A和B,这时候如果我们使用如下的sql语句:

SELECT *

FROM A

JOIN A, B on A.id = B.id

这时在执行这条语句的时候,就会报出ORA-30365错误。

一般处理方法及步骤

正确使用JOIN语句的方式应如下:

SELECT *

FROM A

JOIN B on A.id = B.id

按照上面的规则,使用JOIN语句,可以避免ORA-30365错误。

--结束END--

本文标题: ORA-30365: left relation in the JOIN KEY clause cannot be same as right ORACLE 报错 故障修复 远程处理

本文链接: https://lsjlt.com/news/526274.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作