i'm currently developing for a big company, and they ask me to create a database for the project following some guidelines, but i have a small question about char and varchar.
I have a string that can be either 8 or 11 char and I would like to know which is the best solution:
myColumn varchar(11)
or
myColumn char(11)
At first i was thinking about the second one, but char is for fixed length no?
Thanks for the answers.