MySQL数据库基本命令十
1、select sum(字段名) from 表名;(求和)表名为teacher

2、select max(字段名) from 表名;(最大值)表名为teacher

3、select min(字段名) from 表名;(最小值)表名为teacher

4、select avg(字段名) from 表名;(平均值)表名为teacher

5、select count(*) from 表名;(统计记录行数)表名为teacher

6、select count(字段名) from 表名;(统计字段值的数目)表名为teacher
