2

Possible Duplicate:
Oracle "(+)" Operator

Can some one tell me what does (+) sign do in sql.. Thanks

a.sample_nbr = b.sample_nbr (+) and
a.sample_nbr = b.sub_sample_nbr (+) and
Community
  • 1
  • 1
Jack
  • 785
  • 4
  • 12
  • 19

2 Answers2

2

outer join - wikipedia is sometimes reliable.

The (+) after b.sample_nbr makes the "b" table optional. The query returns all tables, and where there are no corresponding constraint records, Oracle supplies a null in the constraint name column.

Community
  • 1
  • 1
ring bearer
  • 20,383
  • 7
  • 59
  • 72
2

The plus sign in Oracle specifies an outer join.

Christopher Armstrong
  • 7,907
  • 2
  • 26
  • 28