Mysql中的like模糊查询

时间:2023-12-28 17:17:44

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

%代表任意多个字符
_代表一个字符
escape,转义字符后面的%或_,使其不作为通配符,而是普通字符匹配
数据库数据如下:

Mysql中的like模糊查询

1.查找名字中以Lucy的字段

查询语句:

select * from `user` where name like 'Lucy%'

结果:

Mysql中的like模糊查询

2、查询名字是“Lucy”开头且后面只有一个字符的字段

查询语句:

select * from `user` where name like 'Lucy_'

查询结果:

Mysql中的like模糊查询

3、查找名字中以“Lucy_”开始的字段

查询语句:

select * from `user` where name like 'Lucy/_%' escape'/'

查询结果:

Mysql中的like模糊查询

4、查询名字中以“Lucy”开始,中间含有“_”,以“2”结束的字段

查询语句:

select * from `user` where name like 'Lucy%/_%2' ESCAPE '/'

查询结果:

Mysql中的like模糊查询