MySQL學習筆記二:聚合、分組與排序

聚合函數 如count、sum、avg、min、max等稱爲聚合函數。select子句、having子句以及order by子句中能夠包含聚合函數。沿用筆記一的product表格:web select count(*) from product;-- 會獲得包含null的全部數據行數,8條 select count(purchase_price) from product;-- 不包含該列的nul
相關文章
相關標籤/搜索