HI All,
My script looks something like this.
select a.name,b.filename
from table_a t1, table_b t2
where substr(a.name,1,8) (+) = substr(b.filename,1,8)
Obviously right now I'm getting an error using (+) this way. I need all the name records even if they don't match table_b filename. Any thoughts on this will help!
Thank you in advance!
My script looks something like this.
select a.name,b.filename
from table_a t1, table_b t2
where substr(a.name,1,8) (+) = substr(b.filename,1,8)
Obviously right now I'm getting an error using (+) this way. I need all the name records even if they don't match table_b filename. Any thoughts on this will help!
Thank you in advance!