分组函数。一般是用到SUM(),count(),max(),min()等函数的时候才使用,除括号内出现的字段外其他在sql中出现的字段都需要进行group by。 使用方法:

select [字段A],max([字段B]) from table 1 where [字段C] = '' group by [字段A],[字段C]