Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要查找一个记录 id 是否不止一次在同一个组 id 上。
组号 | 记录编号 | 评论 -------------------------------- 3 1 3 1 4 2
在这种情况下,id 为 1 的记录与组 id 3 关联了两次。
是否有可以为所有记录提供此行为的查询?
谢谢
这个查询应该做的工作:
select t.group_id, t.record_id from [your_table] t group by t.group_id, t.record_id having count(*) > 1