Possible Duplicate:
Oracle “(+)” Operator
So I was given a script with the following:
SELECT BLAH
FROM A_TABLE T1, A_TABLE T2, A_TABLE T3
WHERE T2.FIELD_1(+) = T1.FIELD_1
AND T3.FIELD_1(+) = T2.FIELD_1
... etc a few more AND clauses that do that same thing
I need to convert this script to MSSQL Server but I have no clue what this operator is doing. Is it possible that this is some kind of typo?