Mysql like 'xxxx%' execution plan type is all

problem description

clipboard.png

the environmental background of the problems and what methods you have tried

The execution plan with the btree index added to the

field still seems to sweep the table

related codes

/ / Please paste the code text below (do not replace the code with pictures)

what result do you expect? What is the error message actually seen?

type posted by others on the Internet is range. I don"t know what causes type to be all on my side

Mar.30,2021

p_code is of type int. But your like is followed by a string, columns that need type conversion, and mysql is not indexed.

you can change p_code to varchar type. Like is generally used on columns of string type.

Menu