【发布时间】:2012-05-17 16:21:36
【问题描述】:
CQL 等效项是什么: INCR MyCounter['123']['test'] BY 1
【问题讨论】:
CQL 等效项是什么: INCR MyCounter['123']['test'] BY 1
【问题讨论】:
您可以在此处找到 CQL 语法参考:Cassandra Query Language (CQL) v2.0。在 CQL 中增加一个计数器:
update MyCounter set test = test + 1 where KEY = '123';
【讨论】: