I\'m working with a table in MySQL that contains the following columns:
id, january, february, march, april, etc
The data in the table looks li
You can use vectors in MySQL:
select * from table where (january, february) = (1, 1)
Beware of different server and client collations for text columns, possibly you'll need to specify collation explicitly then.