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 '别名'

posted @   蓝海的bug本  阅读(4959)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示