查看文章 |
Sql server,Oracle,MySQL随机查询记录
2006-11-20 12:42
作者:罗代均 ldj_work#126.com,转载请保持完整性 1. Oracle,随机查询20条 select * from ( )
2.MS SQL Server,随机查询20条 select top 20 * from 表名order by newid()
3.My SQL:,随机查询20条 select * from 表名 order by rand() limit 20 |
最近读者: