我正在调整我的 SQL 服务器,当我在顶部显示我的一个查询的执行计划时,它显示:
“缺失索引(影响 99.7782):创建非聚集索引...”
所以我查看了缺少的索引详细信息,它显示了这一点:
/*
Missing Index Details from ExecutionPlan1.sqlplan
The Query Processor estimates that implementing the following index could improve the query cost by 99.7782%.
*/
/*
USE [phsprod]
GO
CREATE NONCLUSTERED INDEX [<Name of Missing Index, sysname,>]
ON [dbo].[address] ([userid])
GO
*/
我现在只使用 SQL 大约一个月,而且我从来没有做过任何事情,因为我的所有表都已经为我构建了。任何人都可以帮助解释/给我关于如何处理的任何想法吗?谢谢。