我想通过 CQL 3 在复合列族中插入数据。
create column family marks with
comparator = 'CompositeType(DateType,UTF8Type,UTF8Type)' AND
key_validation_class=UTF8Type AND
default_validation_class=UTF8Type;
该结构将使用 cassandra-cli shell 生成一次,结果将保存在 cassandra 中
**63** (2013-06-04 00:00:00 UTC, Science, 89.00): ''
(2013-06-04 00:00:00 UTC, Mathematics, 80.00): ''
(2013-06-04 00:00:00 UTC, English, 90.00):''
这里的行键是 63,它是主键和唯一键。并且数据将像上面一样保存在 cassandra 中,仅在列名中。对此的插入查询将是什么,以及实现此 CQL3 或节俭的最合适的驱动程序是什么。