程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 教您如何實現MySQL查詢最大值字段

教您如何實現MySQL查詢最大值字段

編輯:MySQL綜合教程

MySQL查詢最大值的方法並不十分復雜,下面就為您介紹MySQL查詢最大值的方法,如果您遇到過MySQL查詢最大值字段的問題,不妨一看。

  1. select a.*, b.count from (  
  2. select * from message  
  3. where to_uid=2026 and is_del<2 and from_uid>0  
  4.  
  5. order by mid desc  
  6. )   
  7. as a  
  8. join  
  9. (  
  10. select reply_id,count(*) as count from message  
  11. where reply_id>0  
  12. group by reply_id  
  13. )  
  14. as b  
  15. on (a.reply_id=b.reply_id)  
  16.  
  17. group by a.reply_id  
  18. order by a.mid desc  
  19.  
  20.  

MySQL查詢結果按某值排序

使用函數實現MySQL查詢行號

MySQL查詢中的非空問題

MySQL查詢超時問題的解決

MySQL日期函數和時間函數

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