gpt4 book ai didi

mysql - 从重复记录中过滤以获取 MYSQL 中的单个记录

转载 作者:行者123 更新时间:2023-11-29 07:28:23 25 4
gpt4 key购买 nike

我想过滤重复项并从这些重复项中获取单个记录。(电话号码列仅重复,其他不重复)

For eg:
row_count state phone areacode zip
1 a 123 989 321
2 z 123 981 322
3 x 123 982 323
4 d 321 983 324
5 a 321 984 325
6 b 098 985 326
7 c 098 986 327

我想要这样的O/P:

row_count   state   phone   areacode    zip
1 a 123 989 321
4 d 321 983 324
6 b 098 985 326

最佳答案

使用相关子查询

select * from  table1 t1 where row_count = 
(select min(row_count)
from table1 t2
where t1.phone=t2.phone
)

关于mysql - 从重复记录中过滤以获取 MYSQL 中的单个记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52734625/

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