Say I've got the following table:
FileExtension (PK)
ContentType
ContentSubType
IsAllowable
I know it's always going to be retrieved by FileExtension. Should I add an index on FileExtension and INCLUDE the other columns? I don't care about insert/update performance.
Will such an index perform better for retrieve operations than just a clustered primary key?
I've considered this question but it refers to a scenario where the lookup key is not known.