VerySource

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 745|回复: 2

请教一个简单sql语句问题:怎么能够查出一个表里的重复的各条数据呀!谢谢了

[复制链接]

1

主题

2

帖子

3.00

积分

新手上路

Rank: 1

积分
3.00
发表于 2020-11-30 21:30:01 | 显示全部楼层 |阅读模式
例如:表里的数据是 1   1   2   3   3    3  
查询后显示的结果为: 1   1    3   3     3
谢谢了
回复

使用道具 举报

0

主题

110

帖子

63.00

积分

新手上路

Rank: 1

积分
63.00
发表于 2020-12-1 02:30:01 | 显示全部楼层
for example:

select * from test where id in (select * from test group by id having (count(id)>1));
回复

使用道具 举报

0

主题

110

帖子

63.00

积分

新手上路

Rank: 1

积分
63.00
发表于 2020-12-1 07:15:01 | 显示全部楼层
test:


create table test(id int)

insert into test values(1)
insert into test values(1)
insert into test values(2)
insert into test values(3)
insert into test values(3)
insert into test values(3)

select * from test where id in (select * from test group by id having (count(id)>1));
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|CopyRight © 2008-2023|verysource.com ( 京ICP备17048824号-1 )

快速回复 返回顶部 返回列表