MySQL SUM() 带条件的求和方法与多条件的求和方法

一、单一的求和。

select sum(value) as value from table where user_id = 1 and type = 6 and type_son = 2

value 为求和的字段。

as 后面是 sum 求和后给它一个名称。

二、SQL语句中嵌套语句多条件求和。

select 

(select sum(value) from table where type = 6 and type_son = 1) as xj0,

(select sum(value) from table where type = 6 and type_son = 2) as xj1,

(select sum(value) from table where type = 3 and type_son = 3) as xj2,

(select sum(value) from table where type = 4 and type_son = 3) as xj3

from table where user_id = 1 limit 0,1


as 后面是 sum 求和后给它一个名称,这样就不会冲突。

三、与第二个一样,但是不采取语句嵌套的方式求和,而是使用 sum 判断求和。

select 

sum(IF(type = 6 and type_son = 1,value,NULL)) as xj0,

sum(IF(type = 6 and type_son = 2,value,NULL)) as xj1,

sum(IF(type = 3 and type_son = 0,value,NULL)) as xj2,

sum(IF(type = 4 and type_son = 3,value,NULL)) as xj3

from table where user_id = 1


sum(IF('条件判断','求和的字段','NULL不计算'))  as  '别名'

我觉得第三个的方式比前面两个的方式要好。

YII 2.0 使用 SUM 求和

$v['alls_bonus'] = AccountingLog::find()
        ->select(["
            sum( IF(type = 6 and type_son = 1,value,NULL) ) as xj0,
            sum( IF(type = 6 and type_son = 4,value,NULL) ) as xj1,
            sum( IF(type = 8 and type_son = 4,value,NULL) ) as xj2, 
            sum( IF(type = 3 and type_son = 1,value,NULL) ) as xj3
        "])
        ->where(['user_id'=>1])
        ->asArray()
        ->one();

注意要在 select 里面加 ["sum........"],否则会报错

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值