常用的聚合函数有哪五种?count()、sum()、avg()、min()、max()
count():求表的行数或者指定表中某个列的列值行数,null值被忽略
select count(字段) from 表名 --得到该列值的非null值
2023-07-11