mysql – 显示所有月份的总和。显示空值

huangapple go评论51阅读模式
英文:

mysql - show sum in all months. Show null value

问题

我有代码。如何将其更改以显示月份的零总和?

SELECT 
DATE_FORMAT(`item_date_added`, "%m.%Y") AS date, IFNULL(SUM(`item_quantity`), 0) AS sum 
FROM 
`ip_invoice_items` 
WHERE 
YEAR(`item_date_added`) = 2019 
GROUP BY 
MONTH(`item_date_added`);

我尝试使用IFNULL,但没有结果。


<details>
<summary>英文:</summary>

i have code. how can i change it to show month with zero sum?[![enter image description here](https://i.stack.imgur.com/zAGKE.png)](https://i.stack.imgur.com/zAGKE.png)

SELECT
DATE_FORMAT(item_date_added,"%m.%Y") AS date, SUM(item_quantity) AS sum
FROM
ip_invoice_items
WHERE
YEAR(item_date_added)= 2019
GROUP BY
MONTH(item_date_added);


i try use ISNULL and no result. 

</details>


# 答案1
**得分**: 0

以下是翻译好的部分:

- 你可以尝试这个解决方案:
- 在表中生成所有介于最小日期和最大日期之间的月份年份日期,或者你可以手动硬编码控制最小/最大日期(由你决定)。
- 与表进行左连接,以查找空行。
- 根据需要添加更多的日期筛选条件

```mysql
SELECT all_months.date, invoice_items.sum
FROM ( # 生成最小和最大日期之间的所有月份 
    SELECT DATE_FORMAT(m1, '%m.%Y') AS date
    FROM
    (
        SELECT ((SELECT MIN(`item_date_added`) FROM `ip_invoice_items`) + INTERVAL m MONTH) as m1
        FROM
        (
            SELECT @rownum:=@rownum+1 as m 
            FROM (select 1 union select 2 union select 3 union select 4) t1,
                (select 1 union select 2 union select 3 union select 4) t2,
                (select 1 union select 2 union select 3 union select 4) t3,
                (select 1 union select 2 union select 3 union select 4) t4,
                (select @rownum:=-1) t0
        ) d1
    ) d2 
    where m1 <= (SELECT MAX(`item_date_added`) FROM `ip_invoice_items`)
) AS all_months
LEFT JOIN (
    SELECT DATE_FORMAT(`item_date_added`, "%m.%Y") AS date, SUM(`item_quantity`) AS sum 
    FROM `ip_invoice_items`
    GROUP BY DATE_FORMAT(`item_date_added`, "%m.%Y")
) AS invoice_items ON invoice_items.date = all_months.date
英文:

You can try this solution:

  • Generate all month-year dates between the min and max dates in the table, or you can control the min/max manually as hard coded (up to you)
  • Left join with the table to find out null rows
  • Add more filters on date as you want
SELECT all_months.date, invoice_items.sum
FROM ( # Generating all months between min and max dates 
    SELECT DATE_FORMAT(m1, &#39;%m.%Y&#39;) AS date
    FROM
    (
        SELECT ((SELECT MIN(`item_date_added`) FROM `ip_invoice_items`) + INTERVAL m MONTH) as m1
        FROM
        (
            SELECT @rownum:=@rownum+1 as m 
            FROM (select 1 union select 2 union select 3 union select 4) t1,
                (select 1 union select 2 union select 3 union select 4) t2,
                (select 1 union select 2 union select 3 union select 4) t3,
                (select 1 union select 2 union select 3 union select 4) t4,
                (select @rownum:=-1) t0
        ) d1
    ) d2 
    where m1 &lt;= (SELECT MAX(`item_date_added`) FROM `ip_invoice_items`)
) AS all_months
LEFT JOIN (
    SELECT DATE_FORMAT(`item_date_added`,&quot;%m.%Y&quot;) AS date, SUM(`item_quantity`) AS sum 
    FROM `ip_invoice_items`
    GROUP BY DATE_FORMAT(`item_date_added`,&quot;%m.%Y&quot;)
) AS invoice_items ON invoice_items.date = all_months.date

huangapple
  • 本文由 发表于 2023年2月24日 00:49:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/75547866.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定