Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Cursor : Is this the best way?
Couldn't you just:
select a.name
from table_a a, table_b b
where a.name = b.name(+)
and a.status = 'P'
and b.name is null
![]() |
![]() |