Access和Sql Server数据库中实现从数据库中随机抽取N条记录
Access: select top n * from table order by rnd(id) 'id为数据库的自动编号字段
Sql Server: select top n * from table order by newid()