Whats the difference between Query A and Query B. Both table_a and table_b are having 700k+ records. The obvious difference I can see is the speed (performance). Additionally, our Oracle consultants tend to write sql script using Query B.
Query A
select *
from table_a a
inner join table_b b
on a.id = b.id
Query B
select *
from table_a a,table_b b
where a.id = b.id