说说常用的聚合函数有哪些及作用?
列表如下:
基本使用语法:
select max(age) from t_student;
select min(age) from t_student;
聚合函数经常会结合分组查询,出现在众多的SQL笔试题中,对于SQL笔试题,唯有多练
列表如下:
基本使用语法:
select max(age) from t_student;
select min(age) from t_student;
聚合函数经常会结合分组查询,出现在众多的SQL笔试题中,对于SQL笔试题,唯有多练