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”。

本教程操作环境: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
法语写作助手
法语助手旗下的AI智能写作平台,支持语法、拼写自动纠错,一键改写、润色你的法语作文。
31 查看详情
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求和使用方法是什么的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/350891.html
微信扫一扫
支付宝扫一扫