is there a way to define an column of type 'enum' and then define another column in the same table of type 'set' with the same values of the 'enum' ?
for example we have an 'enum' with values "one", "two", "three", we define the first column in the table with that enum type. Then I need to define the second column in the table with the 'SET' of "one", "two" and "three".
I hope I made myself clear on that...