文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>随机取 数据库中的 记录

随机取 数据库中的 记录

时间:2010-09-29  来源:Look_Sun

--从一个表中随机取两条记录 --1.dbms_random.value select * from(select * from t_ums_config order by dbms_random.value) where rownum <= 2; --2.dbms_random.random select * from(select * from t_ums_config order by dbms_random.random) where rownum <= 2; --3.sys_guid() select * from(select * from t_ums_config order by sys_guid()) where rownum <= 2; --4.sample(20) 按百分比 select * from(select * from t_ums_config sample(20)) where rownum <= 2; --5.sample block(20) 按数据块 select * from(select * from t_ums_config sample block(40)) where rownum <= 2;
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载