gpt4 book ai didi

mysql - 选择带有日期的查询错误

转载 作者:行者123 更新时间:2023-11-29 05:15:31 25 4
gpt4 key购买 nike

我有一个像这样的带有这些示例数据的 mysql 表

enter image description here

我写了这个查询

SELECT SUM(amount),DATE(date) FROM outgoings WHERE outgoings_type_id = '1'GROUP BY amount

我得到了这样的输出

enter image description here

我希望它不是这样的,而是像这样的(我对上面的一个做了一些 photoshop 编辑!)

enter image description here

唯一的变化是我想要同一日期的金额总和。其他都是正常方式。是否可以对我的查询进行一些更改?

最佳答案

试试这个,你做你的总和(金额)并按日期分组。

SELECT SUM(amount),DATE(date) FROM outgoings WHERE outgoings_type_id = '1'GROUP BY DATE(date)

然后您的汇总(总和或其他)将按日期字段分组。

另外,我认为你不需要做 DATE(date)

SELECT SUM(金额),date FROM outgoings WHERE outgoings_type_id = '1'GROUP BY date

关于mysql - 选择带有日期的查询错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33483935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com