Let's say I have a table Person:
ID
Name
Surname
DateOfBirth
And I have this composite index: (Name, Surname)
Do I have to create an implicit index for Name? e.g For a where clause like that:
SELECT *
FROM Person
WHERE Name=?
Or it's not needed as the previous index will cover it?
Surname