Help!!
Dear Members
I would like to know some expert advise from you
people. Basically i would like to know, performance
wise which approach is better in oracle queries
between using inner join and equi-join
For example, I have table A and B having column id in
both. Now of the below two queries, which is better
1 ) select a.x,b.y from A a join B b on a.id=b.id
2 ) select a.x,b.y from A a,B b where a.id=b.id
Thanx and Regards
Kaleel
|