本篇文章小编给大家分享一下SQL group by去重复且按照其他字段排序操作代码,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
需求:
合并某一个字段的相同项,并且要按照另一个时间字段排序。
例子:
一开始用
select city from table group by city order by date desc
会报错因为date没有包含在聚合函数或 GROUP BY 子句中
然后用将date放入group by中:
select city from table group by city,date order by date desc
得到结果
但是得到的结果还是有重复的,没有解决
如果不按照时间排序,就会影响我之后的操作,所以百度了很久,终于找到了解决方法:
正确写法:
select city from table group by city order by max(date) desc
发现很神奇的结果出来了
然后又找了一些资料,发现max()神奇的地方:
select city,max(date) as d1 from table group by city,d1 order by d1 desc
这里写在前面还能看到时间排序