发布网友 发布时间:2023-10-23 12:18
共2个回答
热心网友 时间:2024-12-14 03:42
1.MS SQL Server,随机查询20条
select top 20 * from 表名order by newid()
2.My SQL:,随机查询20条
select * from 表名 order by rand() limit 20
热心网友 时间:2024-12-14 03:42
你可以试试这个: select * from xx order by rand() limit 10