怎么在sql中查找多个字段数据相同

如题所述

可用group by……having来实现。
可做如下测试:
1、创建表插入数据:

1
2
3
4
5
6
7
8
9

create table test
(id int,
name varchar(10))

insert into test values (1,'张三')
insert into test values (2,'李四')
insert into test values (3,'张三')
insert into test values (4,'王五')
insert into test values (5,'赵六')

其中name是张三的有两行,也就是重复行。
2、执行sql语句如下:

1
2

select * from test where name in
(select name from test group by name having COUNT(*)>1)

结果如图:
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答