BOOLEAN Type

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