I have a MySQL database and I'd like to know if I have a VARCHAR(32) with no data inside it, does it take any space, like some kb
?
The reason I'm asking it is because I store a hash of 32 chars to check something but after a while I'll not use it anymore, so if it takes some of DB space, I might make this field null or empty.
If so, should I make this field null or empty to save some space?