1.基础模糊查询
1.1查询 三 字结尾的数据
select * from a where `name` like '%三'
1.2查询 张 字开头的数据
select * from a where `name` like '张%'
1.3所以模糊查询查询全部数据 .
select * from a where `name` like '%%'
1.4 所以多模糊查询,以此类推
select * from a where `name` like '我%是%'
1.5多重模糊查询,以此类推
select * from student where Student_Name like '王%' and Student_Address like '广%'
标签:like,数据库,模糊,查询,Mysql,where,select,name From: https://www.cnblogs.com/mzdxxcdh/p/17840556.html