I have recently learned that in Oracle we can do something like
select t1.a, t2.b
from table1 t1, table2 t2
where t1.x = t2.x
which is equivalent to
select t1.a, t2.b
from table1 t1
join table2 t2 on (t1.x=t2.x)
Is there any performance difference or are there any other arguments that we should use one style instead of the other?