Possible Duplicate:
Difference between Inner Join & Full join
What is the difference between these two, especially within SQL Server 2008 -
select * from table1 t1, table2 t2 where t1.col1 = t2.col1
AND
select * from table1 t1 INNER JOIN table2 t2 ON t1.col1 = t2.col1