欧美久久天天综合香蕉伊,h片在线免费观看,九九欧美,欧美1区2区3区,日本在线不卡一区,国产视频久久久,91久久久久久久

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

SQL SERVER中對查詢結果隨機排序

2004-02-11 eNet&Ciweek

  Randomly Sorting Query Results

  查詢結果隨機排序   

  Q. How can I randomly sort query results?

  問:怎樣才能對查詢結果隨機排序?  

  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:  

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

  SELECT *

  FROM Northwind..Orders

  ORDER BY NEWID()

  SELECT TOP 10 *

  FROM Northwind..Orders

  ORDER BY NEWID()

相關頻道: eNews

您對本文或本站有任何意見,請在下方提交,謝謝!

投稿信箱:tougao@enet16.com