Performing range queries for cassandra table
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am trying to store data with following schema: CREATE TABLE temp_humidity_data ( asset_id text, date text, event_time timestamp, temprature int, humidity int, PRIMARY KEY((asset_id, date),event_time) ) I have followed datastax article 'Getting Started with Time Series Modeling' - http://planetcassandra.org/blog/post/getting-started-with-time-series-data-modeling/ however with this data model one thing that is not working is query that returns me data between two dates. How do I do that? If I do this: select * from temp_humidity_data where