Is there a difference in performance (in oracle) between
Select * from Table1 T1 Inner Join Table2 T2 On T1.ID = T2.ID
And
Using JOIN makes the code easier to read, since it's self-explanatory.
JOIN
There's no difference in speed(I have just tested it) and the execution plan is the same.