Please help me optimize my Mysql query below
SELECT * FROM `ticket` WHERE `ticket_id` LIKE '%wm%33%' LIMIT 0,1000
the table doesn't have full text index and i'm affraid that giving the column a full text index will cost time when table is needed to be always on
The following recommendations will help you in your SQL tuning process.
You'll find 3 sections below:
SELECT
*
FROM
`ticket`
WHERE
`ticket`.`ticket_id` LIKE '%wm%33%' LIMIT 0, 1000