首页 > 开发 > 综合 > 正文

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

2024-07-21 02:31:16
字体:
来源:转载
供稿:网友

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

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


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表