您现在的位置是:网站首页> 编程资料编程资料

取随机记录的语句_数据库其它_

2023-05-27 393人已围观

简介 取随机记录的语句_数据库其它_

mysql: select * from tablename order by rand() limit 10
sqlserver: select top 10 * from tablename order by NEWID()

-六神源码网