從資料庫表格中隨機抽取行

來源:互聯網
上載者:User

BKJIA快譯】從資料庫表格中隨機抽取行有什麼用?因為有時候你會想要給使用者展示一些隨機的資訊。下面介紹在幾個流行的資料庫中提取隨機行的代碼。BKJIA編者:BKJIA曾介紹過有關隨機資料讀取的方法,其中包括ASP.NET 2.0中隨機讀取Access資料庫記錄,MySQL 從表中取出隨機資料,以及ORACLE裡取隨機數的方法)

MySQL中提取10個隨機行

SELECT column FROM table 
ORDER BY RAND() 
LIMIT 10 

Oracle中提取10個隨機行

SELECT column FROM 
( SELECT column FROM table 
ORDER BY dbms_random.value ) 
WHERE rownum <= 10

PostgreSQL中提取10個隨機行

SELECT column FROM table 
ORDER BY RANDOM() 
LIMIT 10 

Microsoft SQL Server中提取10個隨機行

SELECT TOP 10 column FROM table 
ORDER BY NEWID()

代碼來源:viralpatel.net

  1. ASP.NET 2.0中隨機讀取Access資料庫記錄
  2. MySQL 從表中取出隨機資料
  3. ORACLE裡取隨機數的方法

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.