国产黄色免费网站,人人干人人干人人干,免费大黄网站在线看,国产情侣一区二区三区,99精品国产福利免费一区二区,国产亚洲成归v人片在线观看,伊人88

2023信創(chuàng)獨(dú)角獸企業(yè)100強(qiáng)
全世界各行各業(yè)聯(lián)合起來,internet一定要實(shí)現(xiàn)!

SQL SERVER中對(duì)查詢結(jié)果隨機(jī)排序

2004-02-11 eNet&Ciweek

  Randomly Sorting Query Results

  查詢結(jié)果隨機(jī)排序   

  Q. How can I randomly sort query results?

  問:怎樣才能對(duì)查詢結(jié)果隨機(jī)排序?  

  A. To randomly order rows, or to return x number of randomly chosen rows,

   you can use the RAND function inside the SELECT statement.

   But the RAND function is resolved only once for the entire query,

   so every row will get same value.

   You can use an ORDER BY clause to sort the rows by the result from the NEWID function,

   as the following code shows:  

  答:對(duì)結(jié)果記錄隨機(jī)排序,或隨機(jī)返回X條記錄,可以通過在SELECT語(yǔ)句中使用RAND函數(shù)來實(shí)現(xiàn)。但是RAND函數(shù)在查詢中只生成一次,因此每一行都將得到相同的值??梢酝ㄟ^在ORDER BY子句中使用NEWID函數(shù)來對(duì)結(jié)果進(jìn)行排序的方法來實(shí)現(xiàn),代碼如下:  

  SELECT *

  FROM Northwind..Orders

  ORDER BY NEWID()

  SELECT TOP 10 *

  FROM Northwind..Orders

  ORDER BY NEWID()

相關(guān)頻道: eNews

您對(duì)本文或本站有任何意見,請(qǐng)?jiān)谙路教峤?,謝謝!

投稿信箱:tougao@enet16.com