SQL Developer “disconnected from the rest of the join graph”

后端 未结 4 1668
死守一世寂寞
死守一世寂寞 2020-12-18 19:49

I have the following SQL:

select 
from pluspbillline 
left outer join workorder 
    on workorder.siteid=pluspbillline.siteid 
    and wor         


        
4条回答
  •  有刺的猬
    2020-12-18 19:56

    I had the same message when hovering over the "LEFT" word, but the whole query ran without a problem. On the other hand, when I hovered over "WITH", I got a piece of advice about restructuring the whole query. So, that message about disconnection could be not a sign of an error, but a warning about a too complex sentence. SQLDeveloper's editor does not mention the level of the problem.

提交回复
热议问题