ok. How the heck does this work?
I created a colum with SET('1','2','3','4') type
Then I try and insert using:
INSERT INTO set_test SET set_check = '9,10,11,12';
It seems that the only way I can insert is with:
INSERT INTO set_test SET set_check = '1,2,3,4';
using the values I specified when creating the column type
Can I use text as my set? How to do? I have been looking at the MySQL manual all morning, and haven't gotten anywhere.