difference between inner joins and = joins
Hi All ,
I would like to select is there any performance difference when using the followings for example :
select a.* from tbl1 A inner join tblB on A.col1 = B.col1 and A.col2 = B.col2
and
select a.* from tbl1 A , tbl2 B where A.col1 = B.col1 and A.col2 = B.col2
appreciate ur advise
tks & rdgs