0
我有一張桌子在「卡桑德拉」chat_matches。並且想要將所有消息的from_id計數爲不同的to_id與行數(group by to_id)。卡桑德拉的不同的計數
CREATE TABLE chat_matches(
chat_id uuid,
from_id bigint,
to_id bigint,
message text,
message_send_time timestamp,
PRIMARY KEY ((chat_id,from_id),message_send_time)
);
你想from_id,to_id,COUNT(*)GROUP BY from_id,to_id查詢to_id? – nevsv
是的,想要獲得總聊天數。 – Shanu