How to get random output of multiple rows from any table in Oracle? Also what is the meaning of (dbms_random.value)
select *
from (select *
from emp
order by dbms_random.value)
where rownum=1;
It gives only one random output. How do I get multiple?