I am using mysql and need to update a column with a null value. I have tried this many different ways and the best I have gotten is an empty string.
Is there a speci
Use IS instead of = This will solve your problem example syntax:
IS
=
UPDATE studentdetails SET contactnumber = 9098979690 WHERE contactnumber IS NULL;