Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: IF statement fails when it should no (PL/SQL)
"Mike Moore" <hicamel_at_mail.home.com> wrote in message
news:JTys6.43603$zV3.3219506_at_news1.frmt1.sfba.home.com...
>Try IF (theDoc.SDNumber is NULL) then
Yes and no. He wants the opposite of that.
Either of these will work:
IF NOT (theDoc.SDNumber is NULL) THEN
IF theDoc.SDNumber is NOT NULL THEN
-Matt Received on Fri Mar 16 2001 - 20:44:45 CST
![]() |
![]() |