Forum Moderators: coopster
select * from db where car like 'pors%' shouldn't cause much of a performance hit because the way indexing is done. This would, though:
select * from db where car like '%pors%' On the other hand I've noticed that full text indexes to be very fast, so in the latter example full text indexing might be a good option to explore.