У меня есть индекс idx_tablename_col1col2col3 для Таблицы1 (Col1, Col2, col3)
Мой запрос выглядит ниже
select * from table1
where col1 = @col1 and col2 = @col2
select * from table1
where col2 = @col2 and col3 = @col3
select * from table1
where col1 = @col1 and col3 = @col3
Требуется ли создать 3 индекса для каждого оператора или достаточно?с существующим индексом, который упомянут выше ..
select * from table1
where col1 = @col1 and col2 = @col2
select * from table1
where col2 = @col2 and col3 = @col3
select * from table1
where col1 = @col1 and col3 = @col3