COALESCE无法按预期工作(mysql)

时间:2018-12-08 21:49:56

标签: mysql null coalesce

我试图写出每月销售额和利润的明细,并且合并功能无法按预期工作,即,没有按照我想要的方式更改NULL。

这是我的代码:

SELECT  coalesce (extract(month from o.order_date),'Total year') AS mois, 
                sum(op.selling_price * op.quantity) AS 'Monthly sales',
                sum(op.selling_price * op.quantity) - sum(p.buying_price * op.quantity) AS 'Monthly Profit',
                count(r.return_id)
FROM order_products op
JOIN orders o
ON o.order_id = op.order_id
LEFT JOIN returns r
ON r.order_product_id = op.order_product_id 
JOIN products p
ON p.product_id = op.product_id
WHERE extract(year from o.order_date) = '2016'
GROUP BY mois
WITH ROLLUP;

运行此代码时,最后一行(汇总)在“ mois”列下仍显示“ NULL”。

关于我可能错过的事情有什么想法吗?

我尝试使用ifnull函数,但是遇到了同样的问题。

谢谢!

1 个答案:

答案 0 :(得分:0)

使用汇总在子查询中放入查询,并在主查询中使用COALESCE

SELECT COALESCE(mois, 'Total year') AS mois, `Monthly sales`, `Monthly Profit`, return_count
FROM (
    SELECT  extract(month from o.order_date) AS mois, 
                    sum(op.selling_price * op.quantity) AS 'Monthly sales',
                    sum(op.selling_price * op.quantity) - sum(p.buying_price * op.quantity) AS 'Monthly Profit',
                    count(r.return_id) AS return_count
    FROM order_products op
    JOIN orders o
    ON o.order_id = op.order_id
    LEFT JOIN returns r
    ON r.order_product_id = op.order_product_id 
    JOIN products p
    ON p.product_id = op.product_id
    WHERE extract(year from o.order_date) = '2016'
    GROUP BY mois
    WITH ROLLUP) AS x