查找表中的重复项
可能的重复:
SQL - 如何删除重复行?
大家好,
我该怎么做编写以下查询。
我有一个表 Trace
,我想获取其中 ID
列和 MC
列组合多次出现的所有行。
例如,ID = 2 和 MC = 11
出现多次的所有行。
谢谢
Possible Duplicate:
SQL - How can I remove duplicate rows?
Hello all
How I can Write following query .
I have a table Trace
and I want to get all lines there where ID
columns and MC
columns combinations are appear more then once.
for example all lines where ID = 2 and MC = 11
appear more then once .
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以对
ID, MC
进行分组,并使用having
来选择多次出现的组合:You could group on
ID, MC
, and usehaving
to select combinations that occur more than once: