我对卡桑德拉很新。我有一个表包含以下列CustomerId,Timestamp,Action,ProductId。我需要选择CustomerId并从日期到日期使用时间戳。我不知道如何在cassandra中执行此任何帮助将不胜感激。
答案 0 :(得分:1)
首先,您应该记住,您应该计划将来要执行的查询,并根据它来制作表键。 如果你有密钥(customerId,date),那么你的查询可以是:
SELECT * FROM products WHERE customerId= '1' AND date < 1453726670241 AND date > 1453723370048;
请参阅http://docs.datastax.com/en/latest-cql/cql/cql_using/useAboutCQL.html