Microsoft
70-433 · Question #91
You have the following query: SELECT EmployeeID, ManagerID, LoginID FROM dbo.Employees WHERE ManagerID = 1500 ORDER BY ManagerID; You have been tasked to force the query to use the execution plan in…
The correct answer is D. INDEX(IX_Employees). See the full explanation below for the reasoning.
Question
You have the following query:
SELECT EmployeeID, ManagerID, LoginID FROM dbo.Employees WHERE ManagerID = 1500 ORDER BY ManagerID; You have been tasked to force the query to use the execution plan in the exhibit. You need to use an appropriate hint to perform the task. Which hint should you use?
Options
- AINDEX(0)
- BINDEX(1)
- CINDEX(PK_Employees)
- DINDEX(IX_Employees)
How the community answered
(51 responses)- A16% (8)
- B4% (2)
- C6% (3)
- D75% (38)
Community Discussion
No community discussion yet for this question.