NOT is a logical negation operator : NOT « Select Query « Oracle PL / SQL
- Oracle PL / SQL
- Select Query
- NOT
NOT is a logical negation operator
SQL> BEGIN
2 IF NOT FALSE THEN
3 dbms_output.put_line('True.');
4 END IF;
5 END;
6 /
True.
PL/SQL procedure successfully completed.
SQL>
Related examples in the same category