<p>MySql的like语句中的通配符:百分号、下划线和escape</p><p></p><p>%代表任意多个字符</p><p>Sql代码 www.2cto.com </p><p>select * from user where username like '%huxiao'; </p><p></p><p>select * from user where username like 'huxiao%'; </p><p></p><p>select * from user where username like '%huxiao%'; </p><p></p><p>_代表一个字符</p><p>Sql代码 </p><p>select * from user where username like '_'; </p><p></p><p>select * from user where username like 'huxia_'; </p><p></p><p>select * from user where username like 'h_xiao'; </p><p></p><p>如果我就真的要查%或者_,怎么办呢?使用escape,转义字符后面的%或_就不作为通配符了,注意前面没有转义字符的%和_仍然起通配符作用</p><p>Sql代码 </p><p>select username from gg_user where username like '%xiao/_%' escape '/'; </p><p></p><p>select username from gg_user where username like '%xiao/%%' escape '/';</p>