mysql varchar int 123 走索引吗?
摘要:结论: 当MySQL中字段为int类型时,搜索条件where num='111' 与where num=111都可以使用该字段的索引。当MySQL中字段为varchar类型时,搜索条件where num='111' 可以使用索引,where num=111 不可以使用索引 验证过程: 建表语句: 1
阅读全文
posted @ 2020-03-19 18:54