I got over 7 million rows in the table and
SELECT COUNT(*) FROM MyTable where MyColumn like '%some string%'
gives me 20,000 lines and takes more than 13 seconds.
In MyColumn, the table has a CONTINUOUS INDEX.
Is there a way to improve speed?
source
share