2025-06-19 03:32:25
1、Oracle查询结果集,随机排序
select * from tableName order by dbms_random.value();
2、MySQL随机查询,随机排序
SELECT * FROM tableName ORDER BY rand()
3、SQL随机查询,随机排序
SELECT * FROM tableName ORDER BY NEWID()
4、Oracle随机查询20条
select * from
(
select * from tableName order by dbms_random.value
)
where rownum <= 20;
5、My SQL随机查询20条
select * from tableName order by rand() limit 20
6、MS SQL Server随机查询20条
select top 20 * from tableName order by newid()
2025-06-19 10:44:55
2025-06-19 11:21:25
2025-06-19 04:11:33