如何从一张表中只获取重复的数据?
我有一张表和许多数据,例如重复值和单个值。 但我只想获取重复值数据,而不是单个值。
I have one table and many data like duplicate values and single values.
But I want to get only duplicate value data's , not single value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面的查询将显示重复的值。一旦您将其提供给业务用户,他们的下一个问题将是发生了什么?这些是怎么到那里的?重复项有模式吗?通常更能提供信息的是查看包含这些值的整行,以帮助确定为什么存在重复项。
The above query will show the duplicated values. And once you provide that to a business user, their next question will be what happened? How did these get there? Is there a pattern to the duplicates? What's often more informative is to see the whole rows containing those values to help determine why there are duplicates.