MySQL全文索引如何解决like模糊匹配查询慢的问题需求需要模糊匹配查询一个单词select * from t_phrase where LOCATE('昌',phrase) = 0; select * from t_chinese_phrase where instr(phrase,'昌') > 0;se
like-like简介-like资料
like
MySQL全文索引如何解决like模糊匹配查询慢的问题需求需要模糊匹配查询一个单词select * from t_phrase where LOCATE('昌',phrase) = 0; select * from t_chinese_phrase where instr(phrase,'昌') > 0;se