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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Oracle to DB2 conversion...

Status
Not open for further replies.

filex

Programmer
Sep 15, 2004
3
0
0
DE
Hello, can you please tell me how would an Oracle select statement below:
"select OUTER.FEILD1 X0 FROM XX_PEVP "OUTER", XX_PEVP "INNER" WHERE OUTER.FIELD2 = INNER.FIELD3 (+) AND OUTER.FIELD4 = 'XXXXXXX'"

will look on DB2, I don't know what "(+)" to submit with...Thank you.
 
Hi,

I don't know what the (+) part of the source means...

Can you explain that?

Regards,

Crox
 
Try this

select
a.col_x
from
outtable a
left outer join intable b on
a.col_y = b.col_y
where
a.col_n = 'xxxx'

Regards,

Alphonsus.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top