| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> Re: IF NOT EXISTS SELECT ...
On 15 Oct 1996 11:32:11 GMT, eraarm_at_hfera.ericsson.se (Armin S. Seidel LK/NKG) wrote:
>I would like to test the existence of rows as condition
>in a PL/SQL if-clause:
> IF NOT (EXISTS SELECT * FROM table WHERE col = value) THEN
> ...
> END IF;
>
use:
select count(*) into N from dual
where exists ( select NULL from table where col = value );
if ( n = 0 ) then
....
end if;
>but Oracle complains about the syntax. I tried different variations
>with/without parentheses without success.
>Apparently, the EXISTS operator may only be used in subqueries.
>Can you help?
>
>-- Armin
>_______________________________________________________________________
>Armin.Seidel_at_hfera.ericsson.se KI/ERA/LK/NK +46(0)8-404 2456
> extr.qraarmi@memo.ericsson.se http://www.hfera.ericsson.se:/~eraarm/
> armin_at_independent.se www.independent.se +46(0)70-7277822
>
Thomas Kyte
Oracle Government
tkyte_at_us.oracle.com
![]() |
![]() |