CQL with a wide row - how to get most recent set?
问题 How would I write the CQL to get the most recent set of data from each row? I'm investigating transitioning from MSSQL to Cassandra and am starting to grasp the concepts. Lots of research has help tremendously, but I haven't found answer to this (I know there must be a way): CREATE TABLE WideData { ID text, Updated timestamp, Title text, ReportData text, PRIMARY KEY (ID, Updated) } WITH CLUSTERING ORDER (Updated DESC) INSERT INTO WideData (ID, Updated, Title, ReportData) VALUES ('aaa', NOW,