Which would be faster and better on large data?
SELECT * FROM 'table' where name LIKE 'micky%' OR name LIKE 'molly%'
SELECT * FROM 'table' where name REGEXP '(^micky | ^molly)'
When the parameters more than 10, will it make the slower one become faster?