如何从 pl/sql 中的表中获取记录?
我有一张桌子:Questionmaster。它存储 DisciplineId、QuestionId、QuestionText 等...
现在我的问题是:
我需要特定 DisciplineId 的 10 条记录、另一个 DisciplineId 的 20 条记录和其他 DisciplineId 的 30 条记录...我应该做什么?如何合并所有语句并仅选择 60(10+20+30) 行?
对于一门学科来说,它的工作原理如下:
create or replace function fun_trial(Discipline1,Disc1_NoOfQuestions)
open cur_out for
select getguid() tmp,
QuestionNo,QuestionText,
Option1,Option2,
Option3,Option4,
Correctanswer,Disciplineid
from Questionmaster
where DisciplineId=discipline1
AND rownum <= disc1_NoOfQuestions
order by tmp ;
return (cur_out);
I have one table : Questionmaster. it stores DisciplineId,QuestionId,QuestionText etc...
Now My Question is:
I need 10 records of particular DisciplineId, 20 records for another DisciplineId and 30 records for Someother DisciplineId.... What should I do for that? How can I club all statement and get just 60(10+20+30) rows selected?
For one Discipline,it is working as shown below:
create or replace function fun_trial(Discipline1,Disc1_NoOfQuestions)
open cur_out for
select getguid() tmp,
QuestionNo,QuestionText,
Option1,Option2,
Option3,Option4,
Correctanswer,Disciplineid
from Questionmaster
where DisciplineId=discipline1
AND rownum <= disc1_NoOfQuestions
order by tmp ;
return (cur_out);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下查询使用分析函数
RANK()
对学科内的问题进行排序。然后,外部查询分别选择学科 1、2 和 3 的前 10 个问题、前 20 个问题和前 30 个问题。The following query uses the analytic function
RANK()
to sort the questions within discipline. The outer query then selects the first ten, first twenty and first thirty questions for disciplines 1, 2 and 3 respectively.