I have a table that looks like this:
Index | Condition
1 | A
1 | B
1 | C
2 | A
2 | B
3 | A
In mySQL, how would I select the index number that meets condition A and condition B. As in I want it to only select 1 and 2.
Thanks