我编写了一个查询,它需要为每条记录随机匹配五个可能值中的一个到大约 1500 条记录。我设法让它随机分配一个值,但分配的值对于每条记录都是相同的。有没有办法在不使用 PL/SQL 的情况下做到这一点?请让我知道你的想法。查询如下(数据库为Oracle 11g):
select
ioi.ioi_mstc
,ioi.ioi_seq2
,max(decode(rn, (select round(dbms_random.value(1,5)) num from intuit.srs_ioi where rownum < 2), uddc))
from
intuit.srs_ioi ioi
,intuit.srs_cap cap
,(select
sub.udd_code uddc
,row_number() over(partition by sub.udd_udvc order by rownum) rn
from
(select * from
intuit.men_udd udd
where
udd.udd_udvc = 'PA_REJ_REAS'
order by dbms_random.value) sub
where rownum <= 5) rejReas
where
ioi.ioi_stuc = cap.cap_stuc
and ioi.ioi_iodc = 'PAPERLESS'
and cap.cap_ayrc = '2013/4'
and cap.cap_idrc like '%R%'
group by ioi.ioi_mstc
,ioi.ioi_seq2