Microsoft
70-459 · Question #28
You execute the following code. You need to reduce the amount of time it takes to execute the query. What should you do?
The correct answer is A. Change SUBSTRING(JobTitle,1, 1) = `c' to JobTitle LIKE `c%1'. See the full explanation below for the reasoning.
Question
You execute the following code. You need to reduce the amount of time it takes to execute the query. What should you do?
Exhibit
Options
- AChange SUBSTRING(JobTitle,1, 1) =
c' to JobTitle LIKEc%1'. - BPartition the table and use the JobTitle column for the partition scheme.
- CReplace IX_Employees with a clustered index.
- DChange SUBSTRING (JobTitle, 1, 1) = V to LEFT(JobTitle ,1) = 'c'.
How the community answered
(34 responses)- A74% (25)
- B3% (1)
- C9% (3)
- D15% (5)
Community Discussion
No community discussion yet for this question.
