Is there a performance difference (or any other reason) to use a JOIN instead of a WHERE clause as per the code examples below:
ex1.
select *
from table_1, table_2
where table_1.id=table_2.id;
ex2.
select *
from table_1
join table_2 on
table_1.id = table_2.id;