When I get the explain plan of the following query, I see that, both table has full table scan.
SELECT *
FROM employees e,
departments d
WHERE e.employee_id = d.manager_id;
Here is the explain plan I got with the explain plan command. by EXPLAIN PLAN FOR command

https://i.hizliresim.com/JZdB2o.jpg https://hizliresim.com/JZdB2o https://pasteboard.co/HO9ARcl.jpg
But, if I get the explain plan of the same query with SQL developer, I see a significantly different explain plan. Especially, it writes table access full at the buttom but over it, it writes table access by index rowid.
Here is the explain plan I got from the SQL Developer. by SQL Developer Explain Plan button

https://i.hizliresim.com/DYoYbv.jpg https://hizliresim.com/DYoYbv https://pasteboard.co/HO9BxfA.jpg
My question is, could anyone explain the explain plan of the SQL developer step by step? And why SQL Developer and explain plan command generate different explain plans?
Thanks in advance.


