I have seen some queries with different methods:
Method 1:
select A.col1,A.col2,B.col1,B.col2
from tblA A,tblB B
where A.ID=B.ID
Method 2:
select A.col1,A.col2,B.col1,B.col2
from tblA A join tblB B on A.ID=B.ID
What is the difference between these two queries or advantage of using one on other?
if we use just JOIN
keyword instead of INNER JOIN/OUTER JOIN/LEFT JOIN
which join it is to be called?
Help Appreciated!