Order by created date In Cassandra
问题 i have problem with ordering data in cassandra Database . this is my table structure: CREATE TABLE posts ( id uuid, created_at timestamp, comment_enabled boolean, content text, enabled boolean, meta map<text, text>, post_type tinyint, summary text, title text, updated_at timestamp, url text, user_id uuid, PRIMARY KEY (id, created_at) ) WITH CLUSTERING ORDER BY (created_at DESC) and when i run this query , i got the following message: Query : select * from posts order by created_at desc;