mysql 复杂sql的处理

Posted Aaronqcd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 复杂sql的处理相关的知识,希望对你有一定的参考价值。

1.需要汇总同一用户的资金,还要根据这些资金的类型进行分类统计:

使用案例:

select cms.uid,sum(cms.money) 总支出,sum(case when cms.change_type=‘7‘ then cms.money else 0 end) as 激活用户,
sum(case when cms.change_type=‘5‘ then cms.money else 0 end) as 转账,
sum(case when cms.change_type<>‘5‘ and cms.change_type<>‘7‘ then cms.money else 0 end) as 其他
from cms_member_funds cms where cms.money<0 GROUP BY cms.uid

参考网站:http://www.jb51.net/article/46205.htm




以上是关于mysql 复杂sql的处理的主要内容,如果未能解决你的问题,请参考以下文章

sql日期

SQL Date 函数

sql:mysql:MySql 不存在则插入,存在则更新或忽略

sql:mysql:MySql 不存在则插入,存在则更新或忽略

SQL Date 函数

SQL Date 函数