oracle中sql案例
Posted AWNUygah
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中sql案例相关的知识,希望对你有一定的参考价值。
1.从众多事物中查询每个事物的最新时间的记录。
select c.vin,c.checktime
from (select t.*,
row_number() over(partition by t.vin order by t.checktime desc) rn
from test_table t
where t.vin is not null) c
where rn = 1;
以上是关于oracle中sql案例的主要内容,如果未能解决你的问题,请参考以下文章