sql里的order by和group by区别是什么?
sql 里的 order by 和 group by 的区别:
order by 从英文里理解就是行的排序方式,默认的为升序。 order by 后面必须列出排序的字段名,可以是多个字段名。
group by 从英文里理解就是分组。必须有“聚合函数”来配合才能使用,使用时至少需要一个分组标志字段。
什么是“聚合函数”?
像sum()、count()、avg()等都是“聚合函数”
使用group by 的目的就是要将数据分类汇总。
一般如:
select 单位名称,count(职工id),sum(职工工资) form [某表] group by 单位名称
这样的运行结果就是以“单位名称”为分类标志统计各单位的职工人数和工资总额。
在sql命令格式使用的先后顺序上,group by 先于 order by。
order by 排序查询、asc升序、desc降序
示例:
select * from 学生表 order by 年龄 查询学生表信息、按年龄的升序(默认、可缺省、从低到高)排列显示
也可以多条件排序、 比如 order by 年龄,成绩 desc 按年龄升序排列后、再按成绩降序排列
group by 分组查询、having 只能用于group by子句、作用于组内,having条件子句可以直接跟函数表达式。使用group by 子句的查询语句需要使用聚合函数。
示例:
select 学号,SUM(成绩) from 选课表 group by 学号 按学号分组、查询每个学号的总成绩
select 学号,AVG(成绩) from 选课表
group by 学号
having AVG(成绩)>(select AVG(成绩) from 选课表 where 课程号='001')
order by AVG(成绩) desc
查询平均成绩大于001课程平均成绩的学号、并按平均成绩的降序排列
SQL中,group by 跟order by有啥区别?
SQL中,group by 跟order by有啥区别? GROUP BY 是分组,主要用于统计,合计等SQL中使用 比如: select userid,count(*) as t from usercount group by userid; order by 是排序,即按什么字段来排序,顺序或倒序。 在group by 中可以使用order by 如: select userid,count(*) as t from usercount group by userid order by t (倒序时添加 desc) sql中order by和group by的区别 order by 是按表中某字段排列表中数据 group by 是按某些字段分类。 例如按 1.按年龄排序表中的记录 select * from users order by age 2.按年龄分类表中数据 (就是求各个年龄的人数) select age,count(*) as number1 from users group by age 再SQL 中order by和group by 有什么区别? order by 是排序 group by 是分组 ethnic group 和 nationality 有啥区别? ethnic group n.同种同文化之民族 Being a member of a particular ethnic group. 种族一员的,作为一特定种族集团中的成员的 a joke at the expense of some ethnic group.开某一种族玩笑的笑话。 A member of the principal ethnic group of Hungary. 马札尔人,匈牙利一个主要的少数民族 nationality n.国籍, 国家, 部落, 民族, 民族性 Achang nationality 阿昌族 minority nationality 少数民族 nationality areas 民族聚居地区 British nationality 英国国籍 order by 和 group by 的区别 在计算机中: order by 从英文里理解就是行的排序方式,默认的为升序。 order by 后面必须列出排序的字段名,可以是多个字段名。 group by 从英文里理解就是分组。必须有“聚合函数”来配合才能使用,使用时至少需要一个分组标志字段。 作为英语: order by 排序;排序依据;分组排序 例句: 1.An index will be used for both an ascending and a descending ORDER BY,whether the index was ascending or descending. 不管索引是升序排列还是降序排列,在执行升序或降序ORDERBY操作时都会使用索引。 2.Analytic functions are the last set of operations performed in a query except for the final ORDER BY clause. 除了ORDERBY(按…排序)语句外,分析函数是一条查询被执行的操作。 group by分组;将表按行分组;分组依据 例句: 1.The List To Group projection can only be used for lists, and it turns the list into agroup by retaining only the first item of the list. ListToGroup映射仅可用于列表,它通过仅保留列表的第一个项目将列表转化成一个组。 2.Indicates that the data column is being used to create a grouped result set (ispart of a GROUP BY clause) in an aggregate query. 表示数据列用于在聚合查询中创建分组的结果集(GROUPBY子句的一部分)。 order by 意思是“根据……排序”,例如按时间、名称、大小排序等;group by 意思是“按……分组”,例如按文件类型分组。