Answers for "update column if is null mysql"

SQL
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 "update column if is null mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language