SQL中经常遇到如下情况,在一张表中有两条记录基本完全一样,某个或某几个字段有些许差别,

这时候可能需要我们踢出这些有差别的数据,即两条或多条记录中只保留一项。

如下:表timeand

 

针对time字段相同时有不同total和name的情形,每当遇到相同的则只取其中一条数据,最简单的实现方法有两种

1select 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字段的内容,所以一般用于只有两条字段或其他字段内容完全一致的情况

2select * from timeand as a where not exists(select 1 from timeand where a.time = time and a.total<total);

 

 

此中方案排除了方案1中name字段不准确的问题,取的是total最大的值

相关文章:

  • 2021-09-19
  • 2021-09-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-20
  • 2021-12-17
猜你喜欢
  • 2022-12-23
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
相关资源
相似解决方案