I have a table defined as follows
create table events (offset int,key varchar, user uuid,name varchar,
emitted int, day int, month int, year int,PRIMARY KEY((offset), year, month,
day) )
WITH CLUSTERING ORDER BY (year DESC, month DESC, day DESC);
where user is a uuid of the user who submitted the event, offset is unique, but user is not because a user has many events. I'd like to select events given user and date range, how can I accomplish this