I am working with Microsoft SQL Server 2012. I have two tables T1 and T2 and they both have an ID
column.
When I enter the following SQL statement in my Microsoft SQL Server Management Studio
select ID
from T1
natural full outer join T2
it generated the following error:
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near 'T2'.
However, Microsoft SQL Server Management Studio accepts the following statement which I think is an equivalent statement:
select ID
from T1
full outer join T2 ON t1.ID = T2.ID
Does SQL Server Management Studio not support natural full outer join?