No, sql uses the index as long there is no wild card before the character...
If you put the wild card befor sql will not use the index...
select * from sysobjects where name = '%obj%' -- index will not be used...
select * from sysobjects where name = 's%' -- index will be used...
Mohammed U.
MohammedU.
Microsoft SQL Server MVP
Moderator
SQL-Server-Performance.com
All postings are provided “AS IS” with no warranties for accuracy.