1.需求说明:
当查询出来的数据存在多条数据时,想按照一定条件排序取出其中一条数据。
2.使用函数:
row_number() over( partition by 分组字段 order by 排序字段 desc)
3.示例:
--根据table_a中的pk_house,pk_customer进行分组,然后根据table_b.billdate进行排序,取出最大billdate的一条数据文章来源:https://www.toymoban.com/news/detail-731944.html
select *
from (select table_a.code,
table_a.name,
table_b.billdate,
row_number() over(partition by table_a.pk_house, table_a.pk_customer order by table_b.billdate desc) rn
from table_a
left join table_b
on table_b.pk_table_a = table_a.pk_table_a
where table_a.code = '11111')
where rn = 1文章来源地址https://www.toymoban.com/news/detail-731944.html
到了这里,关于ORACLE多列中取出数据最大的一条的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!