But do we need to change the SQL statements which doesn't use explicitly
'INNER JOIN', by adding 'INNER JOIN' ?. I know both will work just fine.
But what to double check, and findout any issues if I am not using 'INNER
JOIN' ?
Example : The below 2 SQLs produce the same result.
SELECT a.field1, b.field2 FROM tbl1 a, tbl2 b WHERE a.id = b.id
SELECT a.field1, b.field2 FROM tbl1 a INNER JOIN tbl2 b ON a.id = b.id
Really appreciate your feedback ?
--
Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se
Links for SQL Server Books Online:
SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx
SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx
SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx