multiple data into 1 column is easily done with SET columns....
depending on the information I suppose... but anything is really storeable....
say you have the options of
red, blue, green, orange (multiple are selectable)
UPDATE table SET column = ('red', 'blue', 'green', 'orange') WHERE id= $id
or... done using BITFlag type assignments....
red = 1, blue = 2, green = 4, orange = 8
if all options are clicked, SET column = 15 (1+2+4+8)
if only red and orange, column = 9 (1+8)
selecting the column can return the flag names you assigned when creating the column, OR the value of the options stored in that column
you are also able to select rows that contain any one, or combinations of those values, or none of the values using the bitwise operators....
I use em... dunno many other people that do... but I like them for things like that 😉