simple question: does something like this query add to performance in mysql or speed up its optimization?
AND `name` LIKE '%'
I do not have a large database so I can test it.
By the way, I want this because I want users to be able to send some parameters to my server side script, which then captures the prepared statement specified by the user and inserts the parameters. I want users to be able to omit parameters when searching without sacrificing performance, and LIKEusually relatively slow, right?
thejh source
share