NOT is a logical negation operator : NOT « Select Query « Oracle PL / SQL






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

1.NOT operator
2.NOT BETWEEN: BETWEEN function can also be combined with the NOT operator
3.Test the NOT IN version, but exclude the NULL
4.Not and if statement
5.Not equals
6.Not has the lowerest priority
7.Or, and, not
8.invalid relational operator
9.Negate boolean expression