mysql基礎——簡單分組查詢07

分組查詢group  by select  cno,  (count(*))  from  product  group  by cno; select  cno ,avg(price)  from  product  group  by  cno  having  avg(price) > 60; having  可以接聚合函數,出現在分組後 where  它是不可以接聚合函數,出現在分組前 s
相關文章
相關標籤/搜索