sqlserver中,一个表里面有多个字段,怎样根据两个不能重复的字段取出全部的字段。
3个回答
展开全部
有重复数据主要有一下几种情况:希望可以帮到你~
1.存在两条完全相同的纪录
这是最简单的一种情况,用关键字distinct就可以去掉
example: select distinct * from table(表名) where (条件)
2.存在部分字段相同的纪录(有主键id即唯一键)
如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组
example: select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....])
3.没有唯一键ID
这种情况我觉得最复杂,目前我只会一种方法,有那位知道其他方法的可以留言,交流一下:
example:select identity(int1,1) as id,* into newtable(临时表) from table
select * from newtable where id in (select max(id) from newtable group by [去除重复的字段名列表,....])
drop table newtable
1.存在两条完全相同的纪录
这是最简单的一种情况,用关键字distinct就可以去掉
example: select distinct * from table(表名) where (条件)
2.存在部分字段相同的纪录(有主键id即唯一键)
如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组
example: select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....])
3.没有唯一键ID
这种情况我觉得最复杂,目前我只会一种方法,有那位知道其他方法的可以留言,交流一下:
example:select identity(int1,1) as id,* into newtable(临时表) from table
select * from newtable where id in (select max(id) from newtable group by [去除重复的字段名列表,....])
drop table newtable
追问
不是的,可能是我表达不够清楚,图片里面我电话和学生姓名这两项都相同的话,我就取id号最大的一条。并且要把其他的字段也取出来。
追答
select * from table where id in (select max(id) from table group by 电话和姓名) 你试试看
展开全部
select * from 表名 as t where not exists(select 1 from 表名 where 重复字段=t.重复字段 and id<t.id)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果表中的所有字段数据出现一样的二条记录:
select distinct * from 表
这个和唯一标示符有关系,你的表设计肯定不不和业务。
select distinct * from 表
这个和唯一标示符有关系,你的表设计肯定不不和业务。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询