Hi Everyone,
Suppose there is a table Table1 which has three columns which are not primary key
Column1
Column2
Column3
If we create an composite index on the columns Column1,Column2 as Idx_C1_C2, then would the index fire for all the three columns? Is it better to create a joint index or create separate indexes for each of the two cloumns?
Select * from Table1 where column1=value1 and column2=value2
Select * from Table1 where column1=value1
Select * from Table1 where column2=value2
Regards
Gautam
Gautam S