gpt4 book ai didi

sql - 获取具有重复列值的行

转载 作者:行者123 更新时间:2023-12-02 08:49:35 25 4
gpt4 key购买 nike

我尝试使用在线解决方案进行此操作,但没有一个对我有用。

Table :
Id rank
1 100
1 100
2 75
2 45
3 50
3 50

我想要返回 ID 1 和 3,因为它们有重复项。

我试过类似的东西

 select * from A where rank in ( 
select rank from A group by rank having count(rank) > 1

这也返回了没有任何重复的 ID。请帮忙。

最佳答案

试试这个:

select id from table
group by id, rank
having count(*) > 1

关于sql - 获取具有重复列值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9475765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com