Personally, I think it's nice to replace null
an empty string.
But you asked him, so here it is
UPDATE table1 SET field1 = '' WHERE field1 IS NULL
Another option is to solve it in your select statements:
SELECT coalesce(field1, '') as field1_excl_nulls FROM table1
This will replace null
in the output with blank lines, while leaving zero inside the database.
Johan source share