条件:
where school like '%一中%' and school like '%张三%'
select t.* from 表名 t where t.school = '一中' and t.name ='张三 '
没有必要用模糊查询 你都知道准确的值了!!!
select * from 表名 where school like '%一中%' and name like '%张三%'
select * from 表名 where school like '%一中%' and school like '%张三%'