当前位置:Gxlcms > mysql > 从数据库中随机抽N条记录_MySQL

从数据库中随机抽N条记录_MySQL

时间:2021-07-01 10:21:17 帮助过:4人阅读

Access:
select top n * from table order by rnd(id)'id为数据库的自动编号字段

Sql Server:
select top n * from table order by newid()

人气教程排行