sql mysql group by使用

查询组合一个字段

select FAccountDate, count(1) from mydb.mytable where FGood = 1 group by FaccountDate;
sql mysql group by使用_第1张图片

查询组合两个字段

select FAccountDate, FType, count(1) from mydb.mytable where FGood = 1 group by FaccountDate, FType;

sql mysql group by使用_第2张图片


你可能感兴趣的:(sql mysql group by使用)