From anybody with real experience, how do LIKE queries perform in MySQL on multi-million row tables, in terms of speed and efficiency, if the field has a plain INDEX?
I recommend you to restrict your query by other clauses also (date range for example), because a LIKE '%something' guarantees you a full table scan
LIKE '%something'