使用group by 的功能,就是分组汇总。 select 第一列,sum(第二列) txfrom 表group by 第一列
SELECT sum(b),a from table GROUP BY a
select a,sum(b) bfrom tbgroup by a