码迷,mamicode.com
首页 > 数据库 > 详细

MySQL查询之聚合查询

时间:2019-05-19 14:00:14      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:总数   style   平均值   where   let   bsp   编号   class   相同   

为了快速得到统计数据,提供了5个聚合函数:

1. count(*)表示计算总行数,括号中写星与列名,结果是相同的

查询学生总数

select count(*) from students;

2. max(列)表示求此列的最大值

查询女生的编号最大值

select max(id) from students where gender=0;

3. min(列)表示求此列的最小值

查询未删除的学生最小编号

select min(id) from students where isdelete=0;

4. sum(列)表示求此列的和

查询男生的编号之后

select sum(id) from students where gender=1;

5. avg(列)表示求此列的平均值

查询未删除女生的编号平均值

select avg(id) from students where isdelete=0 and gender=0;

 

MySQL查询之聚合查询

标签:总数   style   平均值   where   let   bsp   编号   class   相同   

原文地址:https://www.cnblogs.com/mxsf/p/10888951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!