按更新时间取最新记录
Posted lidapengwww
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按更新时间取最新记录相关的知识,希望对你有一定的参考价值。
select *
from (select row_number() over(partition by resourceid order by updatetime desc) rank,
*
from browser.st_resource_info_h ) rn1
where rank=1
以上是关于按更新时间取最新记录的主要内容,如果未能解决你的问题,请参考以下文章