如果字段在 MySQL 中为 null,则返回 0

Return 0 if field is null in MySQL(如果字段在 MySQL 中为 null,则返回 0)
本文介绍了如果字段在 MySQL 中为 null,则返回 0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 MySQL 中,如果总计"字段为 NULL,是否可以将它们设置为零?

In MySQL, is there a way to set the "total" fields to zero if they are NULL?

这是我所拥有的:

SELECT uo.order_id, uo.order_total, uo.order_status,
            (SELECT SUM(uop.price * uop.qty) 
             FROM uc_order_products uop 
             WHERE uo.order_id = uop.order_id
            ) AS products_subtotal,
            (SELECT SUM(upr.amount) 
             FROM uc_payment_receipts upr 
             WHERE uo.order_id = upr.order_id
            ) AS payment_received,
            (SELECT SUM(uoli.amount) 
             FROM uc_order_line_items uoli 
             WHERE uo.order_id = uoli.order_id
            ) AS line_item_subtotal
            FROM uc_orders uo
            WHERE uo.order_status NOT IN ("future", "canceled")
            AND uo.uid = 4172;

数据很好,除了NULL字段应该是0.

The data comes out fine, except the NULL fields should be 0.

如何在 MySQL 中为 NULL 返回 0?

How can I return 0 for NULL in MySQL?

推荐答案

使用 IFNULL:

IFNULL(expr1, 0)

来自文档:

如果 expr1 不为 NULL,IFNULL() 返回 expr1;否则返回 expr2.IFNULL() 返回数字或字符串值,具体取决于使用它的上下文.

If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2. IFNULL() returns a numeric or string value, depending on the context in which it is used.

这篇关于如果字段在 MySQL 中为 null,则返回 0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)