Whenever I try:
SELECT column1 FROM table1;
I get results as comma separated strings (column1 is of type SET):
'result4,result7,result24'
'result2,result15,result36'
etc...
Since mysql SET type is just a 64 BIT string AFAIK - how would I get values as bit string / bit mask?
SELECT function_that_converts_to_bit_string( column1 ) FROM table1;
So result would be:
100100101110000101110
101000110110000101110
100001111100110001110
...