SQL Server internals by Paul White
A LIKE predicate with only a trailing wildcard can usually use an index seek, as the following AdventureWorks sample database query shows:
LIKE
SELECT P.[Name] FROM Production.Product AS P WHERE P.[Name] LIKE N'D%';