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、结果如图:
这个很容易的。
--列举ID中不重复的值select distinct id from tbname --在这条语句前加上insert into #temp就生成临时表
--列举ID中重复的值,只取重复中1条记录
select * from tbname
where id in (select id from tbname group by id having count(id) > 1)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)