I work on multiple projects, especially a web one.
And actually when I need to store like many 'tag' ( its an example ) in one variable, I do it this way:
INSERT INTO xxx (tag) VALUE ('tag1;tag2;tag3')
I use separator. The fact is its a bit crap but it works. I know its not the best solution. When I need to SELECT I cant use WHERE tag=tag1
because of the separator.
What guys do you use when you need to store many value in one var ?