MySQL笔记之函数查询的使用
时间:2021-07-01 10:21:17
帮助过:13人阅读
参考表
count()用来统计记录的条数
代码如下:
mysql> select count(*) from score;
mysql> select count(*) from score where stu_id=901;
sum()求和函数
代码如下:
mysql> select sum(grade) from score;
mysql> select id,sum(grade) from score where stu_id=901;
avg()求平均值函数
代码如下:
mysql> select avg(grade) from score where c_name='计算机';
mysql> select c_name,avg(grade) from score group by c_name;
max()求最大值函数
代码如下:
mysql> select c_name,max(grade) from score where c_name='英语';
mysql> select c_name,max(grade) from score group by c_name;
min()求最小值函数
代码如下:
mysql> select c_name,min(grade) from score where c_name='中文';
mysql> select c_name,min(grade) from score group by c_name;
Concat拼接函数
代码如下:
mysql> select Concat(c_name, '(', stu_id, ')')
-> from score order by stu_id;
您可能感兴趣的文章:
- Mysql字符串截取函数SUBSTRING的用法说明
- MySQL replace函数替换字符串语句的用法
- mysql获取字符串长度函数(CHAR_LENGTH)
- MySQL里实现类似SPLIT的分割字符串的函数
- 使用MySQL中的AVG函数求平均值的教程
- 详解Mysql中的JSON系列操作函数
- Mysql中LAST_INSERT_ID()的函数使用详解
- mysql函数拼接查询concat函数的使用方法
- Mysql数据库使用concat函数执行SQL注入查询
- mysql 查询数据库中的存储过程与函数的语句
- MySQL使用集合函数进行查询操作实例详解