Chars are great because they are fixed in size and therefore make for a faster table. However, they are limited to 255 characters. I want to contain 500 characters, but blob is a variable length, and that is not what I want.
Is there a way to have a field with a fixed length of 500 characters in MySQL or will I have to use 2 char fields?
source
share