mysql函数一共有几种
发布网友
发布时间:2022-04-30 02:14
我来回答
共2个回答
懂视网
时间:2022-04-30 06:36
热心网友
时间:2022-04-30 03:44
count() 统计记录条数,如 select count(*) from stu;
sum() 统计记录字段的和,如select sum(salary) from emp;
avg() 统计记录字段的平均值,如select avg(salary) from emp;
max() 查询字段中的最大值,如select max(age) from stu;
min() 查询字段中的最小值,如select min(age) from stu;