码迷,mamicode.com
首页 > 数据库 > 详细

Sql去重

时间:2019-11-22 12:14:29      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:from   去重   字段   style   主键   简单的   tin   http   链接   

原文链接:https://www.jianshu.com/p/4a10aac1293c

1.存在两条完全相同的纪录
这是最简单的一种情况,用关键字distinct就可以去掉
例子:

     select distinct * from table(表名) where (条件)

2.存在部分字段相同的纪录(有主键id即唯一键)
如果是这种情况的话用distinct是过滤不了的,这就要用到主键id的唯一性特点及group by分组
例子:

        select * from table where id in (select max(id) from table group by [去除重复的字段名列表,....])

3.没有唯一键ID
这种情况我觉得最复杂,目前我只会一种方法,有那位知道其他方法的可以留言,交流一下:

例子:

       select identity(int,1,1) as id,* into newtable(临时表) from table

       select * from newtable where id in (select max(id) from newtable group by [去除重复的字段名列表,....])

       drop table newtable

Sql去重

标签:from   去重   字段   style   主键   简单的   tin   http   链接   

原文地址:https://www.cnblogs.com/imtudou/p/11339653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!