mysql sum求和使用方法是什么

藏色散人
发布: 2023-02-14 09:42:57
原创
2900 人浏览过

mysql sum求和的方法:1、通过“select sum(value) as value from table where user_id”方式实现单一求和;2、通过嵌套语句多条件求和,语法如“(select sum(value) from table where type = 6 and type_son = 1) as xj0”。

mysql sum求和使用方法是什么

本教程操作环境:Windows10系统、MySQL5.7版本、Dell G3电脑。

mysql sum求和使用方法是什么?

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........"],否则会报错

推荐学习:《MySQL视频教程

以上是mysql sum求和使用方法是什么的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!