[FOLLOW UP QUESTION TO #9296]
CREATE TABLE videos_by_tag ( tag text, video_id timeuuid, added_date timestamp, title text, PRIMARY KEY ((tag), video_id, added_date) ) WITH CLUSTERING ORDER BY (video_id ASC, added_date DESC);
Execute your query again, but list the oldest videos first? Is there a possibility to achieve this without modifying the DDL with CLUSTERING ORDER BY (added_date ASC, video_id)?