1、创建测试表、插入数据
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 (1,'张三')
insert into test values (2,'李四')
2、现在要筛选出重复数据,使查询的数据不重复,可用语句
select id,name from test group by id,name
3、结果如图:
SELECT ID, COUNT(ID)
FROM 你的表
GROUP BY ID
HAVING COUNT(ID) >1
以ID进行分组,然后统计count就可以了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)