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案例的主要内容,如果未能解决你的问题,请参考以下文章

Oracle SQL - 动态案例语句

Oracle SQL - 从案例中多次返回

性能测试案例:Oracle重复的SQL

日期计算在 Oracle SQL 案例语句中不起作用?

Oracle数据库SQL语言实战培训教程(全面详细案例精讲)套餐

常用sql语句及案例(oracle)