如何基于2列条件计算SUM

时间:2018-07-16 02:55:26

标签: mysql group-by sum

enter image description here

如何基于2列条件计算SUM。 产品代码相同,但特定的“选项代码”不同。 因此,我想根据GROUP的两个条件获得“总计”。

请帮助我。

2 个答案:

答案 0 :(得分:2)

Select sum(quantity) from 
your_table group by product_code, 
option_code

答案 1 :(得分:1)

尝试以下操作:

Select 
  product_code, 
  option_code,
  sum(quantity) as total_sum
from 
  your_table 
group by 
  product_code, 
  option_code