Is there any way to increase the performance of a query with LIKE '%string%'
in MySQL?
I know that if LIKE
is 'string%'
, it is faster. The problem is when %
is at the beginning of the string. Is there some sort of index we can create to have more performance in this query?