sql中如何查询一个表中重复的数据,并且重复了几次?
答案:6 悬赏:60 手机版
解决时间 2021-11-09 05:52
- 提问者网友:半生酒醒
- 2021-11-08 19:28
sql中如何查询一个表中重复的数据,并且重复了几次?
最佳答案
- 五星知识达人网友:蓝房子
- 2021-11-08 21:03
select col001,sum(1) as ufo from lhsjb group by col001 having sum(1) > 1
全部回答
- 1楼网友:人類模型
- 2021-11-09 00:38
用VLOOKUP 或者数据透视表
- 2楼网友:动情书生
- 2021-11-08 23:54
select col001,count(0) as counter from lhsjb group by col001 having counter >1
- 3楼网友:毛毛
- 2021-11-08 23:27
select col001,count(col001) from lhsjb where coloo1>1 group by col001
- 4楼网友:怙棘
- 2021-11-08 23:18
select col001,count(col001) from lhsjb where count(col001) > 1 group by col001
- 5楼网友:患得患失的劫
- 2021-11-08 22:14
select col001 as ufo,sum(1) from lhsjb group by col001
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯