if null 0 mysql 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: mysql select default if null
IFNULL(MAX(EMAIL), "[email protected]") as email