例如:通过使用随机数函数dbms_random.value()实现数据的随机排序,如下示例:select * from (select ename,job from emp order by dbms_random.value()) where rownum <= 5。