Total newbie in SQL developer, I'm using the autotrace to understand the execution plan. In this autotrace output, what's the purpose of the last hash join?
Suppose the second ("the upper one") nested loop join can already be the final view as all the attributes are there and predicate conditions are met?
SQL:
SELECT TITLE, LASTNAME
FROM MOVIE2 M, ARTIST A
WHERE CODECOUNTRY='aaej' AND M.IDMES=A.IDARTIST;