SELECT * FROM tbl_name WHERE str_col=1;
列str_col上有建立索引,一个字符串类型的列给一个整数类型的值。
问题:为什么会导致索引失效?
原因:
MySQL官方文档解释:The reason for this is that there are many different strings that may convert to the value 1
, such as '1'
, ' 1'
, or '1a'
.
就是说有多个字符串可以转换成整型的值1。也就是说可以转换成1的值太多了,那MySQL怎么知道用那个值去匹配这个列的值尼,所以,如果这样写会导致索引失效。
参考文档连接:https://dev.mysql.com/doc/refman/8.0/en/type-conversion.html