当前位置:Gxlcms > mysql > MySQL分组查询_MySQL

MySQL分组查询_MySQL

时间:2021-07-01 10:21:17 帮助过:26人阅读

MySQL查询

分组查询使用group by,对数据进行分组。目的是为了对分组后的数据进行查询。

  select column,group_function

  from table

  [ where condation ]

  [ group by expression]

  [ having group_condation ]

  [ order by column]

  where子句中不能应用group by语句,所以用having对group by出来的分组数据做限制。

人气教程排行