我使用密集等级函数为学生生成随机排名。请给我代码,只提取前5%的学生

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我使用密集等级函数为学生生成随机排名。请给我代码,只提取前5%的学生相关的知识,希望对你有一定的参考价值。

Select 
    Student_Name,
    DENSE_RANK() OVER (ORDER BY dbms_random.VALUE(1,999999)) AS RBORV    
From
    Stu

从上面的sql我只需要提取前5%的排名(按顺序)..我应该在where子句中添加什么来这样做

答案

有一种非常直接的方式:

Select TOP 5 PERCENT Student_Name, 
        DENSE_RANK() OVER (ORDER BY dbms_random.VALUE(1,999999)) AS RBORV
        From Stu
    Order by RBORV
另一答案

您可以使用窗口函数执行此操作。使用您提供的代码:

select student_name
from (select Student_Name,
             row_number() over (order by dbms_random.VALUE(1,999999)) AS RBORV,
             count(*) over () as cnt
      from Stu
     ) s
where row_number <= cnt * 0.05;

这将在Oracle中工作(看起来像您正在使用的代码)。在SQL Server中,您可以编写等效代码:

select student_name
from (select Student_Name,
             row_number() over (order by newid()) AS RBORV,
             count(*) over () as cnt
      from Stu
     ) s
where row_number <= cnt * 0.05;

或者,更简单地说,如下:

select top 5 percent student_name
from stu
order by newid();

以上是关于我使用密集等级函数为学生生成随机排名。请给我代码,只提取前5%的学生的主要内容,如果未能解决你的问题,请参考以下文章

在Oracle中根据等级生成随机数据

Python习题练习,进阶学习

Python习题练习,进阶学习

Python习题练习,进阶学习

对记录进行排序后使用密集排名

mysql中的用户按他们的分数排名