数据库 从表中随机返回n行数据
从表中随机返回n行数据
MySQL
结合使用内置函数 RAND、LIMIT 和 ORDER BY。
select ename,job
from emp
order by rand() limit 5
SQL Server
结合使用内置函数 NEWID、TOP 和 ORDER BY 来返回随机的结果集。
select top 5 ename,job
from emp
order by newid()
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16994620.html