須要注意的是:每一個字段都必須使用一個AVG函數:函數
select avg(id) as id_avg,avg(price) as price_avg from tb2;
如上,這樣才能分別求出id和price的平均值。code
AVG函數忽略NULL。blog
使用 COUNT(column) 對特定列中具備值的行進行計數,忽略NULL值。ip
select count(*) from tb2;
select count(column_name) from tb2;
第一條語句會計算包含空值的記錄,第二條語句則不會。select
MAX(),MIN()都必須指定列名。分別找出這一列最大值和最小值。方法
select sum(id) as id_sum,sum(price) as price_sum from tb2;
此語句分別檢索出id和price的和。im
例如:統計
select id,count(*) as id_count from tb2 group by id;
此語句按id分組來檢索出id和id數量。結果爲:總結
tips:若是出現聚合函數,則只能使用group by而不能夠使用order by.數據
能夠理解成,having能夠替代where,可是where不能替代having。由於having還能夠過濾分組。
select id, count(*) from tb2 group by id having count(*)>=2;
此語句按id爲分組,並檢索出id數量不小於2的id和對應的數量。
HAVING 和 WHERE 的差異這裏有另外一種理解方法:
where和having連用:
select id,price,count(*) from tb2 where price > 555 group by id having count(*)>=1;
以id爲分組,檢索price大於555而且數量很多於1的id,price,以及數量。