Answers for "mysql query if null set to 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

replace null value within column mysql

UPDATE `table` SET `somefield`=0 WHERE `somefield` is null
Posted by: Guest on January-09-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language