I need to know if there's a mySQL Type which allows for multiple values which are NOT pre-set.
Here's what I need: I have a mySQL column set at CHAR(2). However, I need each entry in that row to be able to have various values. These contain values similar to country domains (ex: "de", "uk", "fr", "jp", "ru"). I would like to know if there's a way I can have various of those values in one same entry (ex: "de, uk" for one entry).
I noticed the SET type but from what I've read you have to specify each possible value when you create the column which is somewhat tedious. Is there something similar to SET without having to specify values?