随机提取多条记录

栏目:Access 来源:网络 关注:0 时间:2019-09-15

随机提取10条记录的例子:

Sql server:
select top 10 * from 表 order by newid()

Access:
SELECT top 10 * FROM 表 ORDER BY Rnd(id) 

Rnd(id) 其中的id是自动编号字段,可以利用其他任何数值来完成

比如用姓名字段(UserName)
SELECT top 10 * FROM 表 ORDER BY Rnd(len(UserName)) 

MySql:
Select * From 表 Order By rand() Limit 10

本文标题:随机提取多条记录
本文地址:http://www.q0738.com/access/10797.html