I have table with structure
- LocId varchar
- ParameterId varchar
- Mdate datetime
- pvalue double
With primary key on first three columns and clustered Index on same column.
- I found when in where clause there is LocId,parameterId,mdate in query excecution plan it shows seek
- I found when in where clause there is LocId in query excecution plan it shows seek
- But where in where clause there is ParameterId in query excecution plan it shows scan.