Why isn't SQL Server using my index?

后端 未结 3 978
感情败类
感情败类 2020-12-29 03:45

In our database we have this table with 200.000 rows

CREATE TABLE dbo.UserTask (
    UserTask_ID int NOT NULL IDENTITY (1, 1),
    UserTask_SequenceNumber in         


        
3条回答
  •  北荒
    北荒 (楼主)
    2020-12-29 04:39

    You can use the query hints in the query to make use of Index. Following is a link for further details: http://msdn.microsoft.com/en-us/library/ms181714.aspx

提交回复
热议问题