Is there a difference in performance (in oracle) between
Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID
And
They're both inner joins that do the same thing, one simply uses the newer ANSI syntax.