提前感谢您的帮助。我将“状态”列作为表的主键,状态从提交,审核,打开和关闭更改。我无法将状态删除为主键,因为我需要按状态进行过滤。我没有使用due-search或solr,有没有其他解决方案我的问题,如果没有人请告诉我如何使用Solr解决这个问题。
create table search_by_datetime_status
(
group_id text,
dateofstop date,
datetime timestamp,
starttime time,
status text,
createid text,
primary key ((group_id),datetime,status,createid)
)
with clustering order by (datetime desc);
我需要的查询就像用group_id=? and datetime>? and status=?