Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Full Join Problem
pbewig_at_swbell.net write:
> select *
> from (select ...) a
> full join (select ...) b
> on a.xxx = b.xxx
> and a.yyy = b.yyy
>
> This causes an ORA-600 internal error.
it tried it and it works for me. I don't think ORA-600 indicates a problem with your SQL.
(maybe) a general question: why don't you use
select *
from (select ...) a, (select ...) b where a.xxx = b.xxx and a.yyy = b.yyy
? the execution plan looks better...
Christian Received on Tue Jan 04 2005 - 10:42:45 CST
![]() |
![]() |