oracle随机选择,前十条记录

前端之家收集整理的这篇文章主要介绍了oracle随机选择,前十条记录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

oracle 随机选择一条记录

SELECT * FROM (SELECT * FROM t_enterprise_info order by dbms_random.value) WHERE rownum =1


oracle选择前10条记录

 select * from test where rownum <=10

原文地址:http://www.cnblogs.com/xusweeter/p/5837430.html

http://soft.chinabyte.com/database/27/11420027.shtml

原文链接:https://www.f2er.com/oracle/207944.html

猜你在找的Oracle相关文章