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

select date_format(t_time,'%Y-%m') time,sum(t.t_amount) total
from trade t
left join  customer c on c.c_id=t.t_cus
where c.c_name="Tom"
and t.t_time like "2023%"
and t.t_type='1'
group by date_format(t_time,'%Y-%m')
order by date_format(t_time,'%Y-%m')

1、date_format()

  • %Y-%m 返回的是 YYYY-MM 格式(如 2023-01)。
  • %Y-%M 返回的是 YYYY-Month 格式(如 2023-January)。
全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务