mysql is null = 0 code example
Example 1: mysql where value is null
SELECT *
FROM contacts
WHERE last_name IS NULL;
Example 2: 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