Hi
I have the query below:
select * from parts where pnum
not in (select pnum from supply where
pnum is not null);
I now need to write the same query but with an outer join?
I have tried various things but can't get it to work.
any suggestions would be appreciated.
many thanks
I have the query below:
select * from parts where pnum
not in (select pnum from supply where
pnum is not null);
I now need to write the same query but with an outer join?
I have tried various things but can't get it to work.
any suggestions would be appreciated.
many thanks
Comment