Consider a table with the following table structure ...
CREATE TABLE table1 (id integer, name varchar (32), ts timestamp);
SELECT * FROM table1 WHERE id = xx and ts between '2010/04/01' and '2010/04/11'
Given this query, how would you present this dataset using Cassandra?
cassandra
Alex
source share