mysql query if null set to 0 code example
Example 1: 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
Example 2: replace null value within column mysql
UPDATE `table` SET `somefield`=0 WHERE `somefield` is null