手机
当前位置:查字典教程网 >编程开发 >mysql数据库 >MySQL笔记之函数查询的使用
MySQL笔记之函数查询的使用
摘要:参考表count()用来统计记录的条数复制代码代码如下:mysql>selectcount(*)fromscore;mysql>select...

参考表

MySQL笔记之函数查询的使用1

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笔记之函数查询的使用】相关文章:

MySQL安全设置图文教程

MySQL查询的性能优化基础教程

mysql建立自定义函数的问题

高性能MySQL读书笔记 找出谁持有锁

MySQL中的LOCATE和POSITION函数使用方法

MySQL删除数据Delete与Truncate语句使用比较

MySQL 查询中的分页思路的优化教程

MySQL索引使用全程分析

MySQL的字符串函数使用说明

mysql慢查询使用详解

精品推荐
分类导航