当前位置:首页 >> 数据库

取随机记录的语句

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