I am new to cassandra, is it possible to insert into only few columns in a table and leaving other columns for future filling?
Thanks in advance
I am new to cassandra, is it possible to insert into only few columns in a table and leaving other columns for future filling?
Thanks in advance
Yes. The syntax of the CQL INSERT gives you what you'd expect:
INSERT INTO table (col_1, col_5) VALUES (val1, val5)