As I read this answer, I guess if it possible to insert and update multiple ENUM "checked" values for a row, with MySQL.
Entity example:
TABLE
id INT auto_increment
day_list ENUM ('1','2','3,'4','5,'6','7')
gender ENUM ('m','f')
I tried the following (to specify that the week end is checked and the two genders too) :
INSERT INTO TABLE (day_list,gender) VALUE ('{6,7}','{m,f}')
It doesn't return any error, and insert correctly the record, but the day_list and the gender fields are empty.
So, it seems that it doesn't work with mySQL. And it doesn't seem to be possible in phpMyAdmin (3.2.0), as the values are checked by radio buttons (and not checkboxes).
Any idea on how to make it work ? Or another solution to record and select those checked days without LIKE request and without association entity (like TABLE_DAYS and TABLE_GENDER) ?