I have some queries that use wild characters in the WHERE clause
select name, address, city, number from employees where name like '%John%
If I create an index on the column name then will the SELECT query make use of that index? I doubt that will happen because the searched name 'John' could be anywhere in the record.
Am I correct on this?
Blog
http://saveadba.blogspot.com/