BOOLEAN Type
- Columns of type
BOOLEAN
cannot be part of thePRIMARY KEY
. - Columns of type can be set, inserted, and compared.
- Implicitly,
BOOLEAN
is neither comparable nor convertible to any other datatypes.
cqlsh:example> CREATE TABLE tasks (id INT PRIMARY KEY, finished BOOLEAN);