I have this Oracle code, which I need to convert to SQL Server:
FROM
dbo.userid t,
dbo.securityuser us,
dbo.dbaudit dba
WHERE
t.userid = us.userid
t.userid = dba.keyvalue(+)
I have a problem with
t.userid = dba.keyvalue(+)
Here the plus operator is after the column and the left joins are done using
table1.col(+) = table2.col
Please help me to understand what actually it is doing.