Thursday, January 08, 2009

利用TOP 和 NewID() 取得随机记录

学到了如何在数据库中寻找随机记录的方法:利用 TOP 和 NewID() 语句
Select top (@top) tables.fields
FROM MytablesJoinedTogether
Where stuff = otherstuff
Order by newid()

就可以随机得到前top条记录了。。。

No comments:

Post a Comment