On my query 1st time it was taking almost 39sec39 seconds and showing me non-clusterclustered index is missing and
Scan count 1, logical reads 14553, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0
After Creating the non-clusterclustered index the duration of the query execution comes down to 1sec and it's showing
Scan count 2266, logical reads 4539, physical reads 0, read-ahead reads 0, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0
Logical reads is decreased after creating the non-cluster indexcreating the non-clustered index, but Scan count increased to 2266Scan count increased to 2266. So my question is the performance of the query is developed or the Scan count 2266 make my query non-optimal?