I have some queries that look like this:
select a.ID, a.Customer, b.Sales
from a, b
where a.ID = b.ID
Yet I see many people writing code like this:
select a.ID, a.Customer, b.Sales
from a
inner join b
where a.ID = b.ID
Is there a difference between these? Does one perform better than the other?