如何从sql数据库里随机取20条记录
展开全部
数据库的段塌随机查询SQL
1. Oracle,随机查询20条
select * from
(
select * from 表名码燃吵
order by dbms_random.value
)
where rownum <= 20;
2.MS SQL Server,随机查询20条
select top 20 * from 表名order by newid()
3.My SQL:,迟侍随机查询20条
select * from 表名 order by rand() limit 20
1. Oracle,随机查询20条
select * from
(
select * from 表名码燃吵
order by dbms_random.value
)
where rownum <= 20;
2.MS SQL Server,随机查询20条
select top 20 * from 表名order by newid()
3.My SQL:,迟侍随机查询20条
select * from 表名 order by rand() limit 20
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询