2

I have a query in pl/sql that i need to migrate to ms sql.

select count(*) from table1 t1 where (conditions1) and (conditions2) and variable = t1.column1(+)

Could anyone tell me what the (+) after the column means ? (is it sort of a sum ?)

Zoredache
  • 128,755
  • 40
  • 271
  • 413
Paul
  • 714
  • 2
  • 6
  • 19

1 Answers1

3

It's an alternate form of specifying an outer join. There are more details here:

http://download.oracle.com/docs/cd/B14117_01/server.101/b10759/queries006.htm

James F
  • 6,549
  • 1
  • 25
  • 23