What is the Filtered Index in SQL Server ?

Filtered Index is used to index a portion of rows in a table that means it applies a filter on INDEX which improves query performance, reduces index maintenance costs, and reduces index storage costs when compared with full-table indexes. When we see an Index created with a WHERE clause, then that is a FILTERED INDEX



You May Interest

What is the Difference Between CHAR and VARCHAR Datatypes in SQL ...

Adding Columns to a Table with a Query in MS SQL

Changing MS SQL Table Name with Query

Getting the Id of MS SQL Server Last Entered Record

What is the Difference Between a Local and a Global Temporary Tab ...