程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> 隨機提取數據庫記錄

隨機提取數據庫記錄

編輯:關於MYSQL數據庫

   幫朋友改個ASP的相關產品顯示要用到隨機讀取當前類別的前10個產品,Google了下收藏的
  MySQL中隨機提取數據庫記錄

  -------------------------------------------------------------------------------- vIEw plaincopy to clipboardprint?

  select * from tablename order by rand() limit 10

  select * from tablename order by rand() limit 10sqlserver中隨機提取數據庫記錄

  -------------------------------------------------------------------------------- vIEw plaincopy to clipboardprint?

  select top 10 * from tablename order by NEWID()

  select top 10 * from tablename order by NEWID()Access中隨機提取數據庫記錄

  -------------------------------------------------------------------------------- vIEw plaincopy to clipboardprint?

  SELECT top 10 * FROM tablename ORDER BY Rnd(FId)

  SELECT top 10 * FROM tablename ORDER BY Rnd(FId)FId:為你當前表的ID字段名

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved