I am looking to do an index seek, keep in mind i am a newbie in indexing, is it possible to achieve an index seek if I were to run the folling using adventure works.
select BusinessEntityID, FirstName, MiddleName, LastName, ModifiedDate
from dbo.person
order by ModifiedDate
I have created the following non-clustered index:
create index IX_ModifiedOn on [dbo].[person] (ModifiedDate Asc)
I don't seem to be getting an index seek looking at the query execution plan. I just want to know the besy way to created an index for ordering on ModifiedDate?
Also there is a Clustered Index on the BusinessEntityID as its the primary key
Thank you
whereorjoin?