Difference between CHAR and VARCHAR in mysql
Both allow to store lists of characters (bytes). But the way they are stored is different. With CHAR, length defines the exact size of the list that will be stored. With varchar, one or two bytes are used as prefix to define the amount of characters. Only one if size …