Can someone explain the purpose of using bitwise operators(like BIT_OR) in MySQL queries. For example, if have a table such as following:
What is the purpose of aggregate operation like:
SELECT name, value FROM table GROUP BY name HAVING BIT_OR(value) = 0;
