原文

很多时候单独使用聚合函数的时候觉得很容易,求个平均值,求和,求个数等,但是和分组一起用就有点混淆了,好记性不如烂笔头,所以就记下来以后看看。

常用聚合函数罗列

  1. 1

    AVG() - 返回平均值

    COUNT() - 返回行数

    FIRST() - 返回第一个记录的值

    LAST() - 返回最后一个记录的值

    MAX() - 返回最大值

    MIN() - 返回最小值

    SUM() - 返回总和

    END

创建一张表

  1. 1

    CREATE TABLE [dbo].[stuscore](

    [name] [varchar](50)  ,--学生名字

    [subject] [varchar](50) ,--课程名字

    [score] [int] ,--分数

    [stuid] [int] ,--学号    [d_date] datetime,--登记时间

    )

  2. 2

    添加多条数据

    insert into [stuscore]select '张三','数学','78','1',GETDATE()union allselect '张三','语文','98','1',GETDATE()union allselect '张三','英语','88','1',GETDATE()union allselect '李四','数学','81','2',GETDATE()union allselect '李四','语文','83','2',GETDATE()union allselect '李四','英语','60','2',GETDATE()

  3. 3

    问题罗列:

    1.    计算每个人的总成绩并排名(要求显示字段:姓名,总成绩)

    2.    计算每个人的总成绩并排名(要求显示字段: 学号,姓名,总成绩,时间)

    3.    计算每个人单科的最高成绩(要求显示字段: 学号,姓名,课程,最高成绩)

    4.    计算每个人的平均成绩(要求显示字段: 学号,姓名,平均成绩)

    5.    列出各门课程成绩最好的学生(要求显示字段: 学号,姓名,科目,成绩)

    6.    列出各门课程成绩最好的两位学生(要求显示字段: 学号,姓名,科目,成绩)

    7.    统计如下:

    学号  姓名 语文 数学 英语 总分 平均分

    8.列出各门课程的平均成绩(要求显示字段:课程,平均成绩)

    9.列出数学成绩的排名(要求显示字段:学号,姓名,成绩,排名)

    10.列出数学成绩在2-3名的学生(要求显示字段:学号,姓名,科目,成绩)

    11.求出李四的数学成绩的排名

    12.统计如下:

    课程 不及格(0-59)个    良(60-80)个    优(81-100)个

    END

问题解决

  1. 1

    计算每个人的总成绩并排名(要求显示字段:姓名,总成绩)

    select name, SUM(score) as totalscore from stuscore group by name  order by totalscore desc

    (求和用sum,计算每个人按name 分组,排序order by)

  2. 2

    计算每个人的总成绩并排名(要求显示字段: 学号,姓名,总成绩)

    select stuid,SUM(score) as totalscore,name,d_date from stuscore group by name,stuid ,d_date order by totalscore desc

    (如果一个表有很多字段呢?难道也要一个一个字段罗列出来group by?)

    select distinct t1.name,t1.stuid,t2.allscore,t1.d_date from  stuscore t1,

    (

    select stuid,sum(score) as allscore from stuscore group by stuid

    )t2

    where t1.stuid=t2.stuid

    order by t2.allscore desc

  3.  

    计算每个人单科的最高成绩(要求显示字段: 学号,姓名,课程,最高成绩) select t1.stuid,t1.name,t1.subject,t1.score from stuscore t1,

    (

    select stuid,max(score) as maxscore from stuscore group by stuid

    ) t2

    where t1.stuid=t2.stuid and t1.score=t2.maxscore

  4.  

    计算每个人的平均成绩(要求显示字段: 学号,姓名,平均成绩)

    select distinct t1.stuid,t1.name,t2.avgscore from stuscore t1,(select stuid,avg(score) as avgscore from stuscore group by stuid) t2where t1.stuid=t2.stuid

  5.  

    列出各门课程成绩最好的学生(要求显示字段: 学号,姓名,科目,成绩)

    select distinct t1.stuid,t1.name,t1.score from stuscore t1,

    (select subject ,max(score) as maxscore from stuscore group by subject) t2

    where t1.score=t2.maxscore and t1.subject=t2.subject

  6.  

    统计如下:

    学号  姓名 语文 数学 英语 总分 平均分

    select stuid as 学号,name as 姓名, sum(case when subject='语文' then score else 0 end) as 语文, sum(case when subject='数学' then score else 0 end) as 数学, sum(case when subject='英语' then score else 0 end) as 英语, sum(score) as 总分,(sum(score)/count(*)) as 平均分 from stuscore group by stuid,name  order by 总分 desc

  7.  

    列出各门课程成绩最好的两位学生(要求显示字段: 学号,姓名,科目,成绩)

    select * from stuscore t1 where t1.stuid in (select top 2 stuscore.stuid  from stuscore where subject=t1.subject   order by score desc)order by t1.subject

     
     
  8.  

    列出各门课程的平均成绩(要求显示字段:课程,平均成绩)

    select subject,AVG(score) from stuscore group by subject

     
     
  9.  

    列出数学成绩的排名(要求显示字段:学号,姓名,成绩,排名)

    declare @temp table(pm int identity(1,1),stuid int,name varchar(50),score int)insert into @temp select stuid,name,score from stuscore where subject='数学' order by score descselect * from @temp

     
     
  10.  

    列出数学成绩在2-3名的学生(要求显示字段:学号,姓名,科目,成绩)

    select t3.*  from

    (

    select top 2 t2.*  from (

    select top 3 name,subject,score,stuid from stuscore where subject='数学'

    order by score desc

    ) t2 order by t2.score

    ) t3 order by t3.score desc

  11.  

    求出李四的数学成绩的排名

    declare @tmp table(pm int,name varchar(50),score int,stuid int)insert into @tmp select null,name,score,stuid from stuscore where subject='数学' order by score descdeclare @id intset @id=0;update @tmp set @id=@id+1,pm=@idselect * from @tmp where name='李四'

  12.  

    统计如下:

    课程 不及格(0-59)个    良(60-80)个    优(81-100)个

    select subject, (select count(*) from stuscore where score<60 and subject=t1.subject) as 不及格,(select count(*) from stuscore where score between 60 and 80 and subject=t1.subject) as 良,(select count(*) from stuscore where score >80 and subject=t1.subject) as 优from stuscore t1 group by subject

sql 聚合函数和group by 联合使用的更多相关文章

  1. SQL Server数据库--》top关键字,order by排序,distinct去除重复记录,sql聚合函数,模糊查询,通配符,空值处理。。。。

    top关键字:写在select后面 字段的前面 比如你要显示查询的前5条记录,如下所示: select top 5 * from Student 一般情况下,top是和order by连用的 orde ...

  2. Sql Server的艺术(三) SQL聚合函数的应用

    SQL提供的聚合函数有求和,最大值,最小值,平均值,计数函数等. 聚合函数及其功能: 函数名称 函数功能 SUM() 返回选取结果集中所有值的总和 MAX() 返回选取结果集中所有值的最大值 MIN( ...

  3. 选择列表中的列……无效,因为该列没有包含在聚合函数或 GROUP BY 子句中

    今天用SQL Server尝试实现一个SQL语句的时候,报了如标题所示的错误,通过在百度里面搜索,并亲自动手实现,终于发现问题所在,现在把它记录下来. 语句如下: select [OrderID],[ ...

  4. SQL 聚合函数

    SQL聚合函数 MAX---最大值 MIN--最小值 AVG--平均值 SUM--求和 COUNT--记录的条数 EXample: --从MyStudent表中查询最大年龄,最小年龄,平均年龄,年龄的 ...

  5. 选择列表中的列无效,因为该列没有包含在聚合函数或 GROUP BY 子句中

    选择列表中的列无效,因为该列没有包含在聚合函数或 GROUP BY 子句中 T-SQL核心语句形式: SELECT     --指定要选择的列或行及其限定  [INTO ]      --INTO子句 ...

  6. mysql之聚合函数、group by、having

    sql中提供聚合函数可以用来统计,求和,求最值等 那么聚合函数有哪些呢? COUNT    统计行数量 SUM         求某一列的和 AVG          求某一列的平均值 MAX  求某 ...

  7. sql 聚合函数、排序方法详解

    聚合函数 count,max,min,avg,sum... select count (*) from T_Employee select Max(FSalary) from T_Employee 排 ...

  8. C#写的SQL聚合函数

    SQL Server 字符串连接聚合函数. 注册程序集: 拷贝“SqlStrConcate.dll”至<sql安装根目录>/MSSQL.1/MSSQL/Binn目录下,执行下面的SQL: ...

  9. 聚合函数、group by

    聚合函数: sql语言中一种特殊的函数:聚合函数,SUM, COUNT, MAX, MIN, AVG等.这些函数和其它函数的根本区别就是它们一般作用在多条记录上.SELECT SUM(populati ...

随机推荐

  1. 深度学习demo

    1. Stanford Convolutional Neural Network on the MNIST digits dataset http://cs.stanford.edu/people/k ...

  2. Firemonkey的几个特色属性(一)

    基于FireMonkey的程序开发与VCL确实有些不同,很多属性发生了变化,尤其是外观方面. 1.Margins.Padding.Position Margins:指定了当前控件在父控件(Parent ...

  3. ubuntu安装微软雅黑和Consolas字体

    原文:http://fooler5.iteye.com/blog/2406227 [字体下载] YaHeiConsolas.tar:http://www.mycode.net.cn/wp-conten ...

  4. shell 编程中的 知识点 - 突然一下子就明白很多东西了

    按自己的意愿生活, 而且是::: 要敢于按自己的意志去活! 那是一种胆量和勇气!! shell中的结构, 只有选择(实际上if条件也是一种选择结构)和循环, 都是用关键字来替代 大括号的. 如: if ...

  5. P3128 [USACO15DEC]最大流Max Flow

    思路 这个题哪里有那么费脑筋 我们可以树链剖分嘛LCT昨天学的时候睡着了,不是太会 两遍dfs+一个5行的BIT 其实树链剖分学好了对倍增和LCT理解上都有好处 一条路径上的修改 由于一条剖出来的链是 ...

  6. SCU 4438 Censor(Hash)题解

    题意:找出字符串p中的w串删除,反复操作,直到找不到w,输出这个串 思路:哈希处理前缀和,如果值相同就删掉. 代码: #include<iostream> #include<algo ...

  7. 【做题】CF177G2. Fibonacci Strings——思维+数列

    题意:定义斐波那契字符串为: $f_1 = $ "a" \(f_2 =\) "b" \(f_n = f_{n-1} + f_{n-2}, \, n > 2 ...

  8. 比较好的一些 ConcurrentHashMap讲解博客

    jdk8 https://blog.csdn.net/jianghuxiaojin/article/details/52006118#commentBox jdk7.8 https://crossov ...

  9. hihoCoder week23 最短路径·一

    spfa 最短路 #include <bits/stdc++.h> using namespace std; #define pb push_back #define INF 1e16; ...

  10. CF776B Sherlock and his girlfriend

    题目地址 题目链接 题解 这题很有意思啊qwq.本来是写算出每个数的质约数的,然后写到一半发现,质约数互相不影响,有质约数的数肯定是合数. 所以合数染一种色,质数染一种色就好 #include < ...