程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 圖片-mysql分段數據統計sql怎麼寫

圖片-mysql分段數據統計sql怎麼寫

編輯:編程綜合問答
mysql分段數據統計sql怎麼寫

圖片說明
1.
這是一張班級的成績表,想統計出每個成績段的數據,mysql的sql語句該怎麼寫呢。
圖片說明

最佳回答:



select '60分以下' type, count(*) from student s where  s.score < 60
     union all 
     select '60分以上70分以下' type,count(*) from student s where  s.score < 70 and s.score > 60
        union all
      select '70分以上80分以下' type,count(*) from student s where  s.score < 80 and s.score > 70
    union all
      select '80分以上90分以下' type,count(*) from student s where  s.score < 90 and s.score > 80
   union all
      select '90分以上' type,count(*) from student s where s.score > 90;

            結果
            +------------------+----------+
| type             | count(*) |
+------------------+----------+
| 60分以下         |        1 |
| 60分以上70分以下 |        1 |
| 70分以上80分以下 |        2 |
| 80分以上90分以下 |        1 |
| 90分以上         |        3 |
+------------------+----------+

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