Is there a difference in performance (in oracle) between
Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID
And
If the query optimizer is doing its job right, there should be no difference between those queries. They are just two ways to specify the same desired result.