Is there a difference in performance (in oracle) between
Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID
And
In PostgreSQL, there's definitely no difference - they both equate to the same query plan. I'm 99% sure that's also the case for Oracle.