Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Select with dual-field empty

Re: Select with dual-field empty

From: Martin T. <bilbothebagginsbab5_at_freenet.de>
Date: 19 Oct 2006 12:39:48 -0700
Message-ID: <1161286788.910298.248500@f16g2000cwb.googlegroups.com>


Sonnich wrote:
> Hi
>
> I havent touched oracle for some time...
>
> I want to do a select from 2 tables, where the connection between the
> tables are fields, but the row migth not exist
>
> e.g.
>
> select * from a, b where a.code=b.code(+), but like this:
>
> select * from a, b
> where a.code1=b.code1(+)
> and a.code2=b.code2(+)
>
> the point is that both code1 and 2 has to be there.
>
> Any idea how I can do this?
>

Maybe:
select * from a, b
where a.code1=b.code1(+)
and a.code2=b.code2(+)
AND (CODE1 IS NOT NULL AND CODE2 IS NOT NULL) ... maybe it could also be written with the explicit LEFT OUTER JOIN .. ON syntax ...

cheers,
Martin Received on Thu Oct 19 2006 - 14:39:48 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US