I am asking this question because I need to know this limitation as I am generating SELECT query in my PHP script and the part of WHERE in this query is ge
WHERE metadata IN ('value1', 'value2')INSERT query)LIKE '%string%' is a performance killer. Such a query can't use an index on that column. LIKE 'string%' on the other hand, is indexable