随笔 - 45,  文章 - 0,  评论 - 0,  阅读 - 66938

平时解决这种,总是用group by,但是又不能select * ,为了可以select * ,于是采用如下办法:

select *
from (select t.*,
row_number() over(partition by t.name order by t.changedate desc) num
from a1_resource_statistics_cache t) a
where num = 1
order by no asc;

参考文章:

http://blog.csdn.net/dotnetstudio/article/details/9766177

 

posted on   time_on  阅读(7740)  评论(0编辑  收藏  举报

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示