When I read this book,
I found that I can create an index that has a where condition.
I found that we can create index like this
Create index `<index_name>` on `<table_name>`
Or
Create index `<index_name>` on `<table_name>` Where (`<Conditions>`)
But I do not know what the benefits are?
What are the benefits of a filtered index
?
Which of columns most be use in Where conditions
?