当前位置: 数据库>mysql
MYSQL中有关SUM字段按条件统计使用IF函数(case)问题
来源: 互联网 发布时间:2014-10-13
本文导语: 今天群里有人问了个问题是这样的: 然后有群友是这样回答的 代码如下: 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...
今天群里有人问了个问题是这样的:
然后有群友是这样回答的
代码如下:
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
两种方式那种更效率还未测试。