比如要查寻名字是ha%ha的用户
select * from user where name like 'ha\%ha' escape '\';
select * from user where name like 'haA%ha' escape 'A';
这两句效果是一样的吗?