Answers for "mysql set null to int column"

SQL
2

null column to 0 in mysql

UPDATE [table]
SET [column]=0
WHERE [column] IS NULL;
Posted by: Guest on February-19-2021
2

mysql set value as null

UPDATE table SET field = NULL WHERE something = something
Posted by: Guest on June-17-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language