gpt4 book ai didi

sql连接或多选?

转载 作者:行者123 更新时间:2023-12-04 13:00:05 27 4
gpt4 key购买 nike

我有两个表 - ConversationsParticipants

参与者有两列 - user_idconversation_id

现在我想找到两个(或更多)特定用户参与的所有对话。

我试过这样的:

select conversation_id from participants where id = 123 and id = 456

但这显然不是很好,因为一行不能同时有两个 user_ids...

有没有人对从这里走哪条路有任何建议?多选查询?

最佳答案

尝试:

select conversation_id 
from participants
where user_id in (123, 456)
group by conversation_id
having count(distinct user_id) > 1

关于sql连接或多选?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8913493/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com