题解 | #获取指定客户每月的消费额#

获取指定客户每月的消费额

https://www.nowcoder.com/practice/ed04f148b63e469e8f62e051d06a46f5

select concat('2023-',time) as "time", total
from(
select case when mo between 1 and 9 then  lpad(mo, 2, '0')
             else mo end  as "time", total                 
from (                      
select month(t_time) as "mo", sum(t_amount) as "total"
from trade t left join customer c
on t.t_cus = c.c_id
where t_cus = 101 and t_type = 1 and t_time like '2023%'
group by month(t_time)
)t1
order by time)t2

全部评论

相关推荐

小谷围鸡肉卷阿姨:+1,腾子投完一动不动
点赞 评论 收藏
分享
狠赚笔第一人:学计算机自己不努力怪大环境?我大一就拿到了美团大厂的offer,好好看看自己有没有努力查看图片
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务