mysql教程

超轻量级php框架startmvc

MYSQL中有关SUM字段按条件统计使用IF函数(case)问题

更新时间:2020-04-26 00:25:01 作者:startmvc
今天群里有人问了个问题是这样的: 然后有群友是这样回答的selectname,sum(casewhenstype=4the

今天群里有人问了个问题是这样的:
 
然后有群友是这样回答的

 
select name,sum(case when stype=4 then money*(-1) else money end ) as M
from table
group by name

我想了想,应该可以用IF函数

于是改了下
 
select name,sum(money*IF(stype=4,-1,1)) as M
from table
group by name

两种方式那种更效率还未测试。

SUM字段 IF函数