I'm trying to be realistic about normalizing a table. I need to decide to add an extra field VARCHAR(255)
that will be probably empty most of the time, or make a new mapping table and store that value plus the relevant id there.
My question is, in the first approach, does that empty VARCHAR(255)
field take up any space in the database?
Platform: MySQL, InnoDB