NULL values are stored separately in a special bitmap space for all the columns.
If you do not distinguish between NULL
and ''
in your application, then I would recommend you to store ''
in your tables (unless the string column is a foreign key, in which case it would probably be better to prohibit the column from storing empty strings and allow the NULLs, if that is compatible with the logic of your application).