sql-server add tag
Josh Darnell (imported from SE)
I'm considering creating a filtered index in my [copy of the Stack Overflow database][1].  Something like this, for example:

    CREATE UNIQUE NONCLUSTERED INDEX IX_DisplayName_Filtered
        ON dbo.Users (DisplayName)
        WHERE Reputation > 400000;

Should I always add the column in the filtering expression (`Reputation` in this example) to the key or includes for the index, or is having it in the filtering expression good enough?

[1]: https://www.brentozar.com/archive/2015/10/how-to-download-the-stack-overflow-database-via-bittorrent/
Top Answer
Josh Darnell (imported from SE)
# Yes!

For various reasons, it's always better to have the filtering column as part of the index: either in the keys, or in the includes

The following are some specific examples of filtered index query problems that are resolved by including the filtering columns in the index.

## Key lookups when the query predicate doesn't match the filter expression

First of all, [the documentation][1] has this to say about including filter expression columns:

> - A column in the filtered index expression should be a key or included column in the filtered index definition if the query predicate uses the column in a comparison that is not equivalent to the filtered index expression.

So if you have an inequality filter expression like `Reputation > 400000`, but your *query* uses a predicate like `WHERE Reputation > 400000 AND Reputation < 450000;`, the filtered index might still be used - but a key lookup will be required to satisfy the query's predicate.

Including the `Reputation` column in the index (key or includes) removes the need for this lookup.

See Erik Darling's post [Filtered Indexes: Just Add Includes][2] for additional details and an example of this situation.

Another example of this can be found in Paul White's answer here: [Unnecessary key lookup being performed while using filtered index][3]

## Key lookups when the filtering column is included in the resultset

The documentation goes on to say this:

> - A column in the filtered index expression should be a key or included column in the filtered index definition if the column is in the query result set.

This might feel like it goes without saying, but just to be complete: if your queries include the filtering column in the final resultset, you should probably include them in the index (key or includes).

## Poor row estimates when using equality expressions

There are cases where useful row estimates based on actual statistics can be eliminated during the optimization process (specifically when the query plan produced by the optimizer is converted to a physical execution plan).  Including the filtering column can prevent these more-accurate estimates from being discarded.

More details, and an example, can be found in Paul White's answer here: [Incorrect row estimation given with a filtered index][4]

An additional example can be found here on dba.se: [Query using a filtered index but wrong estimated number of rows][6]

## Key lookups when using `IS NULL` in the filtering expression

Creating an index with a filtering expression that uses `IS NULL` can produce a completely unnecessary key lookup.  See this question, and the related bug report on SQL Server's feedback site: [Why filtered index on IS NULL value is not used?][5]

As you might have guessed, the workaround presented is to add the filtering column as an included column in the filtered index.

[1]: https://docs.microsoft.com/en-us/sql/relational-databases/indexes/create-filtered-indexes?view=sql-server-2017
[2]: https://www.brentozar.com/archive/2015/12/filtered-indexes-just-add-includes/
[3]: https://answers.sqlperformance.com/questions/2894/unnecessary-key-lookup-being-performed-while-using.html
[4]: https://answers.sqlperformance.com/questions/336/incorrect-row-estimation-given-with-a-filtered-ind.html
[5]: https://dba.stackexchange.com/questions/217046/why-filtered-index-on-is-null-value-is-not-used
[6]: https://dba.stackexchange.com/questions/208897/query-using-a-filtered-index-but-wrong-estimated-number-of-rows

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.