Answers for "mysql check if null or 0"

SQL
0

mysql return 0 if null

SELECT IFNULL(field, 0) AS field FROM products WHERE id = 1

SELECT IFNULL(SUM(field), 0) as field FROM products
Posted by: Guest on December-12-2020
0

if column value is null then in mysql

SELECT 
    contactname, IFNULL(bizphone, homephone) phone
FROM
    contacts;
Posted by: Guest on November-05-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language