Ok, my turn for a question...
I have a table item defined like:
flags SET('F1','F2','F3','F4','F5','F6') DEFAULT NULL
I have the SELECT and INSERT statements working okay,
but the UPDATES have me stumped. How does one 'toggle'
or 'set/clear' just one flag-bit without messing up the others?
In other languages, I could use bit-wise ANDs, ORs, and NOTs.
What is used in PHP/MySQL? Researched for 2 months, no
answers found yet.
Thanks in advance!