My point is the following:
I have a MySQL DB where events are stored. These events could be on different days of the week. You could say it looks like the following:
Day | Active
Mon | yes
Tue | yes
Wed | no
Thu | no
Fri | yes
Sat | no
Sun | no
Now I'm not entirely sure on how I could save this into the DB. Of course there are several possibilities but I see disadvantages on everything I could think of:
- Store them as 7 fields of type Bool (Seems to be a lot of fields for something like that)
- Store them as an 7-bit number (This way I would just need an Integer, but this would need some effort to transform and lacks readability)
In C++ these data could be stored into a std::bitset. I bet there is something which could be used for this in MySQL... Please point me to it :)
PS:
I don't know if it is important: The data will be read with PHP and served as JSON to the outer world.
SETdatatype dev.mysql.com/doc/refman/5.0/en/set.html – dnagirl Mar 5 at 18:18