Hi forum,
I'm trying to force oracle to use the sort merge using hints.
Can anyone suggest why the below code is working correctly?
Please see the explain plan.
Regards, Chris.
set autotrace on
timing start
select /*+ use_merge(e) */ e.fk, d.fk
FROM girl d, boy e
WHERE e.fk = d.fk;
timing...