Answers for "if column is null then 0 in mysql"

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
2

set column to not null mysql

ALTER TABLE Person MODIFY P_Id INT(11) NOT NULL;
Posted by: Guest on April-16-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