BOOLEAN data types

Synopsis

The BOOLEAN data type represents three different states: TRUE, FALSE, or NULL.

Description

  1. type_specification ::= { BOOLEAN | BOOL }
  2. literal ::= { TRUE | true | 't' | 'y' | 'yes' | 'on' | 1 |
  3. FALSE | false | 'f' | 'n' | 'no' | 'off' | 0 }