当前位置:Gxlcms > 数据库问题 > PHP-- 三种数据库随机查询语句写法

PHP-- 三种数据库随机查询语句写法

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

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

PHP-- 三种数据库随机查询语句写法

标签:

人气教程排行