lets say I have an enum field with possible values:
enum('choice1', 'choice2', 'choice3')
Does each individual record take up more space then if I did:
enum('1', '2', '3')
in other words, does mySQL simply refer back to the choices in the table definition or does it actually store a string in each record of that choice?