sql 聚合函数和group by 联合使用

原文

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

常用聚合函数罗列

  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 @[email protected]+1,[email protected] * 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

原文地址:https://www.cnblogs.com/panchanggui/p/10652852.html

时间: 2024-10-07 10:27:16

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

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

top关键字:写在select后面 字段的前面 比如你要显示查询的前5条记录,如下所示: select top 5 * from Student 一般情况下,top是和order by连用的 order by用在表名的后面 order by后面就填你要按它排序的字段,是升序排序(从小到大排序) percent:百分比 %=percent 比如要显示5%的数据处理,不能写top 5%,而是top 5 percent 提示:如果top 5 percent出来的数是3.1条数据的话,是取四条数据,而不

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

今天用SQL Server尝试实现一个SQL语句的时候,报了如标题所示的错误,通过在百度里面搜索,并亲自动手实现,终于发现问题所在,现在把它记录下来. 语句如下: select [OrderID],[ProductID], min(UnitPrice) as MinUnitPrice into NewDetails FROM [Northwind].[dbo].[Order Details] Group by [OrderID] 执行该语句之后,SQL Server报错如下: "消息 8120,

Sql Service的艺术(三) SQL聚合函数的应用

SQL提供的聚合函数有求和,最大值,最小值,平均值,计数函数等. 聚合函数及其功能: 函数名称 函数功能 SUM() 返回选取结果集中所有值的总和 MAX() 返回选取结果集中所有值的最大值 MIN() 返回选取结果集中所有值的最小值 AVG() 返回选取结果集中所有值的平均值 COUNT() 返回选取结果集中行的数目 学习本节所需要的两张表: CREATE TABLE TEACHER ( ID INT IDENTITY (1,1) PRIMARY KEY , --主键,自增长 TNO INT

聚合函数查询 group by having

SELECT COUNT(p.id) AS statisticsCount, c.dept, c.type, p.userId, p.baibanFROM de_tbfw_order_schedulingperson p , de_tbfw_order_scheduling cwhere p.tbfwSchedulingId = c.idand date(c.paibanDate) BETWEEN '2014-07-1'AND '2014-08-15'AND c.dept ='二组'GROUP

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

T-SQL核心语句形式: SELECT     --指定要选择的列或行及其限定  [INTO ]      --INTO子句,指定结果存入新表 FROM      --FROM子句,指定表或视图 [WHERE ]                 --WHERE子句,指定查询条件 [GROUP BY ]           --GROUP BY子句,指定分组表达式 [HAVING ]                --HAVING子句,指定分组统计条件 [ORDER BY [ASC|DESC]] 

mysql_group by与聚合函数、order by联合使用

1.group by:后接字段名,根据字段对数据进行分组 SQL语句:select task_id,session_id,customer_case_id,callout_connect_status from callout_session where callout_dial_time between '2019-04-01 00:00:000' and '2019-04-03 23:59:59' group by task_id,session_id 表1 1.1.单独使用group by

sql 聚合函数

Sql Server 字符串聚合函数 ql Server 有如下几种聚合函数SUM.AVG.COUNT.COUNT(*).MAX 和 MIN,但是这些函数都只能聚合数值类型,无法聚合字符串. 如下表:AggregationTable Id Name 1 赵 2 钱 1 孙 1 李 2 周 如果想得到下图的聚合结果 Id Name 1 赵孙李 2 钱周 利用SUM.AVG.COUNT.COUNT(*).MAX 和 MIN是无法做到的.因为这些都是对数值的聚合.不过我们可以通过自定义函数的方式来解决

C#写的SQL聚合函数

SQL Server 字符串连接聚合函数. 注册程序集: 拷贝“SqlStrConcate.dll”至<sql安装根目录>/MSSQL.1/MSSQL/Binn目录下,执行下面的SQL: CREATE ASSEMBLY [SqlStrConcate] AUTHORIZATION [dbo] FROM 'D:/Program Files/Microsoft SQL Server/MSSQL.1/MSSQL/Binn/SqlStrConcate.dll' WITH PERMISSION_SET =

Spark 系列(十一)—— Spark SQL 聚合函数 Aggregations

一.简单聚合 1.1 数据准备 // 需要导入 spark sql 内置的函数包 import org.apache.spark.sql.functions._ val spark = SparkSession.builder().appName("aggregations").master("local[2]").getOrCreate() val empDF = spark.read.json("/usr/file/json/emp.json"