today i was breaking my head because i wanted to update a table which had a field where the default value was NULL

so in case you are in the same situation as i am today, this is how you would send a query to update a field where the value is NULL

$Query= "UPDATE table_name SET FieldName =1229883373 WHERE FieldName IS NULL"

hope this helps