MySql的like语句中的通配符:百分号、上划线和escape

MySql的like语句中的通配符:百分号、下划线和escapeselect username from gg_user where username like %x

MySql的like语句中的通配符:百分号、下划线和escape
select username from gg_user where username like '%xiao/_%' escape '/'; select username from gg_user where username like '%xiao/%%' escape '/';

??