I'm still learning the finer points of indexes and this is something that I cannot see a need for. Hopefully the community can point me in the right direction.
The table has 6+ fields.
Field1 is a uniqueidentifer and is the PK. Field2 and 3 are also uniqueidentifiers. The rest are varchar/ints and irrelevant as far as I can see.
three index have been placed on the table: Clustered PK Nonclustered Non-Unique on Field2 Nonclustered Non-Unique on Field2 AND Field3
There are no included columns on any of the indexes.
My question is, is there any reason to have the single index on field2? My understanding is that there should be no difference in the seeking of the index if there are two columns or one?