MySQL查询重复内容
如果基于另一列的 id 相同的条件找到超过 1 个唯一值,我想摆脱对特定列 id 的搜索。 IE:
col1 col2
1 33
1 33
1 33
2 33
2 33
因此,仅当 col2 值为 33 时,col1 就有超过 1 个唯一值。
有没有一种方法可以只返回 1 个唯一值的结果并忽略 MySQL 中的第二个唯一值?
I would like to get rid of the search of id's of certain column if more than 1 unique value is found based on the condition that another column's id is the same.
IE:
col1 col2
1 33
1 33
1 33
2 33
2 33
So there are more than 1 unique value for col1 for col2 value of 33 only.
Is there a way we can return results for only 1 unique value and ignore the second unique value in MySQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GROUP BY 可以帮助
GROUP BY could help