Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What does this (+) mean in a query?

Status
Not open for further replies.

ttrinh

MIS
Jan 21, 2002
93
AU
Hi
I want to ask,
what does this (+) mean when it is placed in the where clause of a query ?

eg
SELECT bin.binID, bin.PCDate, bin.reference, bin.completeDate, bin.description, userDetail.firstName, userDetail.lastName, bin.altActionee, binTypes.typeName, Status.status, bin.dateClosed, BusUnit.bUnitName, Department.deptName
FROM status, binTypes, bin, userDetail, busUnit, Department
WHERE (binTypes.typeID = bin.binType AND Status.statusID = bin.status AND bin.actionee = userDetail.userKey (+) AND Department.deptID = BusUnit.bUnitDept AND
bin.mngUnit = BusUnit.bUnitID AND bin.status <> 6 AND bin.status <>5

Thanks
 
In Oracle 7, (+) means about outer joins. Which must immediately follow the join column of the table, as saying add an extra(null) row anytime there's no match.
 
sorry could you elaborate a little?
this query is a query in a CF application which has a datasource sitting in oracle 8.1.7
Does it mean that its still an outer join?
thanks
 
I think it still an outer join, cause your datasource is in oracle base.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top