欢迎访问 生活随笔!

凯发ag旗舰厅登录网址下载

当前位置: 凯发ag旗舰厅登录网址下载 > 运维知识 > 数据库 >内容正文

数据库

mysql基础(3)-凯发ag旗舰厅登录网址下载

发布时间:2025/1/21 数据库 32 豆豆
凯发ag旗舰厅登录网址下载 收集整理的这篇文章主要介绍了 mysql基础(3)-高级查询 小编觉得挺不错的,现在分享给大家,帮大家做个参考.
聚合函数 count 返回查询结果的条数 max 返回查询结果的最大值 min 返回查询结果的最小值 sum 返回查询结果的和 avg 返回查询结果的平均值 统计分数大于等于90的人数: mysql> select count(*) from new_student         -> where score >="90";  使用distinct剔除字段值重复的条数 mysql> select count(distinct score) from new_student         -> where score >="90"; 统计最高分-max mysql> select max(score) from new_student;
统计最低分-min mysql> select min(score) from new_student;  mysql> select min(score) from new_student         -> where score >=60; 统计分数大于等于90的分数的和-sum  mysql> select sum(score) from new_student         -> where score >="90"; 统计平均数-avg  mysql> select avg(score) from new_student         -> where score >="80"; 分组查询 语法格式; select [聚合函数] 字段名 from 表名 where 查询条件 group by 字段名 having 过滤条件 mysql> select score,count(*) from new_student         -> where score >=80         -> group by score; mysql> select score,count(*) from new_student         -> where score >=80                      -> group by score         -> having score >=90; 注:having子语句与where子语句区别:前者在分组后对记录进行过滤,后者在分组前对记录进行过滤 mysql> select score,count(*) from new_student         -> where score >=80         -> group by score         -> having score >=90         -> order by score desc; 联合查询 语法格式 select 语句 union [all] select 语句 ...  注:联合查询结果使用第一个select语句中的字段名 mysql> select * from test_wl         -> union         -> select * from test_wu;

 

转载于:https://www.cnblogs.com/wujiadong2014/p/5717198.html

总结

以上是凯发ag旗舰厅登录网址下载为你收集整理的mysql基础(3)-高级查询的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。

网站地图