合并记录
我想合并一组记录
(id) / (referencedid)
1 10
1 11
2 11
2 10
3 10
3 11
3 12
查询的结果应该是
1 10
1 11
3 10
3 11
3 12
所以,因为 id=1 和 id=2 具有相同的一组相应的引用 ID {10,11},它们将被合并。但 id=3 对应的referenceid不一样,因此不会合并。
完成这项工作的好方法是什么?
I want to consolidate a set of records
(id) / (referencedid)
1 10
1 11
2 11
2 10
3 10
3 11
3 12
The result of query should be
1 10
1 11
3 10
3 11
3 12
So, since id=1 and id=2 has same set of corresponding referenceids {10,11} they would be consolidated. But id=3 s corresponding referenceids are not the same, hence wouldnt be consolidated.
What would be good way to get this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)