聚合函数
count:能够统计表中的行数
1.select count(字段名) from 表名; 会忽略null值
2.select count(*) from student; 不忽略null值
3.select count(1) from student; 不忽略null值
计算查询结果数据总和:select sum(字段名) from result;
计算查询结果数据最大值: select max(字段名) from result;
计算查询结果数据最小值: select min(字段名) from result;
计算查询结果数据平均值: select avg(字段名) from result;
查询不同课程的平均分,最高分,最低分(平均分>80)
group by 字段名(以这个字段分组)
having 条件判断(相当于where)
sselect语法:顺序不能变
MD5加密
md5加密
插入时加密
校验:将用户传进来的密码进行md5加密后,与表中数据进行比较