I used MySQL and here's my table
|Col A(Primary)| Col B | Col C | Col D |
|1 | SOCCER | 2012-12-01 | P |
|2 | VOLLEY | 2012-12-14 | P |
|3 | SOCCER | 2012-12-01 | L |
|4 | VOLLEY | 2012-12-10 | P |
|3 | SOCCER | 2012-12-13 | L |
This table contain million rows. Frequently i used Col B and Col C as condition in my query.
I want to index that table. What column that must indexed? what type of index(primary, unique, fulltext)?