gpt4 book ai didi

mysql - 为什么 Date_Format() 不能正常工作?

转载 作者:行者123 更新时间:2023-11-29 09:06:55 31 4
gpt4 key购买 nike

我使用以下查询来显示每月和每年的总金额和净金额:

SELECT DATE_FORMAT(BILLDATE,'MMM-yyyy'), SUM(GROSSAMOUNT), SUM(NETAMOUNT) 
FROM BILLDETAILS GROUP BY MONTH(BILLDATE);

除涉及 Date_Format 的第一列外,其他列均正确显示。它在所有行中显示 MMM-yyyy,而不是实际的月份和年份。

最佳答案

因为'MMM-yyyy'不是正确的日期格式。您可能需要 '%b-%Y'

http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_date-format

关于mysql - 为什么 Date_Format() 不能正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6799452/

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