单身微笑

文章
4
资源
0
加入时间
2年10月17天

mysql查询包含下划线的问题

假如有个表user:id | name---------------1 | tom2 | ._%\%3 | Jack要查name包含下划线_的, 执行sql语句: select * from user where name like '%_%' ,竟然会把全部行都查出来了,要想正确地查,就要 select * from user where n...