码迷,mamicode.com
首页 > 数据库 > 详细

oracle中sql案例

时间:2020-01-16 10:36:32      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:rac   sel   时间   案例   number   tab   rom   sele   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案例

标签:rac   sel   时间   案例   number   tab   rom   sele   sql   

原文地址:https://www.cnblogs.com/AWNUygah/p/12199772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!