MySQL下划线特殊字符(Like 语句)

最近用了MySQL+ibatis 做项目

问题描述:

在SQL里 用到了 a.name like ##%searchName%##

searchName=test_1

发现出来的结果:

test_1,  test01

原来下划线_在mysql中是特殊符号,代表任意一个字符*

解决方案:

code里面需要对下划线_做转义: test_1 ==> test\_1

问题解决。

上一篇:[django]drf知识点梳理-分页


下一篇:SMTP 协议