I've been told I need to bring all my SQL code up to ANSI standard before we move to SQL 2012.
Currently most of my joins are defined in a JOIN statement and not the WHERE clause.
my question is can I just say
TABLE1 JOIN TABLE2
ON ....
or
must I say
TABLE1 INNER JOIN TABLE2
ON ....
also do I need the word OUTER or can I just say LEFT JOIN, RIGHT JOIN .
Even if it's not required but is recommended that would help as we could make the changes after upgrade at a slower pace and not rushed.
Linda
Currently most of my joins are defined in a JOIN statement and not the WHERE clause.
my question is can I just say
TABLE1 JOIN TABLE2
ON ....
or
must I say
TABLE1 INNER JOIN TABLE2
ON ....
also do I need the word OUTER or can I just say LEFT JOIN, RIGHT JOIN .
Even if it's not required but is recommended that would help as we could make the changes after upgrade at a slower pace and not rushed.
Linda