CQL has 4 types of values:
- Normal value: 1, 2, 3, "abc"
- NULL: Described as
null
- Empty value: Value that has 0 bytes, but is not null. For example a 0 byte
int
value. - Unset value: Sent from the driver to specify that some value shouldn't be modified.
cqlsh:ks> CREATE TABLE t (p int primary key, i int);