仅将几列插入 cassandra table

Inserting only few columns into cassandra table

我是 cassandra 的新手,是否可以只插入 table 中的几列并留下其他列供将来填充?

提前致谢

是的。 CQL INSERT 的语法符合您的预期:

INSERT INTO table (col_1, col_5) VALUES (val1, val5)