本文介绍了我如何在Oracle中排名第一?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我该如何执行以下操作?

How do I do the following?

select top 1 Fname from MyTbl

Oracle 11g 中?

推荐答案

如果只想选择第一行,则可以:

If you want just a first selected row, you can:

select fname from MyTbl where rownum = 1

您还可以使用分析函数对x进行排序和取顶:

You can also use analytic functions to order and take the top x:

select max(fname) over (rank() order by some_factor) from MyTbl

这篇关于我如何在Oracle中排名第一?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 04:45