这篇文章主要为大家详细介绍了SQL中遇到多条相同内容只取一条的最简单实现方法,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
SQL中经常遇到如下情况,在一张表中有两条记录基本完全一样,某个或某几个字段有些许差别,
这时候可能需要我们踢出这些有差别的数据,即两条或多条记录中只保留一项。
【图片暂缺】
1、select time,max(total) as total,name from timeand group by time;//取记录中total最大的值
【图片暂缺】
或 select time,min(total) as total,name from timeand group by time;//取记录中total最小的值
【图片暂缺】
上述两种方案都有个缺点,就是无法区分name字段的内容,所以一般用于只有两条字段或其他字段内容完全一致的情况
2、select * from timeand as a where not exists(select 1 from timeand where a.time = time and a.total<total);
【图片暂缺】
此中方案排除了方案1中name字段不准确的问题,取的是total最大的值
其实很简单,在原先的基础上稍微做下修改即可:
select * from timeand as a where not exists(select 1 from timeand where a.time = time and a.total<total);
select * from timeand as a where not exists(select 1 from timeand where a.time = time and (a.total<total or (a.total=total and a.outtotal<outtotal)));
其中outtotal是另外一个字段,为Int类型
以上就是SQL中遇到多条相同内容只取一条的最简单实现方法的全部内容,希望能给大家一个参考,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/179/8596-0.html
注:关于SQL中遇到多条相同内容只取一条的最简单实现方法的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:SQL SERVER
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。