SQL实现模糊查询的四种方法总结

目录

一、一般模糊查询

二、利用通配符查询

[1. _ 表示任意的单个字符](#1. _ 表示任意的单个字符)

[2. % 表示匹配任意多个任意字符](#2. % 表示匹配任意多个任意字符)

[3. [ ]表示筛选范围](#3. [ ]表示筛选范围)

[4. 查询包含通配符的字符串](#4. 查询包含通配符的字符串)


一、一般模糊查询

  1. 单条件查询
sql 复制代码
//查询所有姓名包含"张"的记录

select * from student where name like '张'
  1. 多条件查询
sql 复制代码
//查询所有姓名包含"张",地址包含四川的记录

select * from student where name like '张' and address like '四川'

//查询所有姓名包含"张",或者地址包含四川的记录

select * from student where name like '张' or address like '四川'

二、利用通配符查询

通配符:_ 、% 、[ ]

1. _ 表示任意的单个字符

sql 复制代码
//查询所有名字姓张,字长两个字的记录

select * from student where name like '张_'

//查询所有名字姓张,字长三个字的记录

select * from student where name like '张__'

2. % 表示匹配任意多个任意字符

sql 复制代码
//查询所有名字姓张,字长不限的记录

select * from student where name like '张%'

//查询所有名字姓张,字长两个字的记录

select * from student where name like '张%'and len(name) = 2

3. [ ]表示筛选范围

sql 复制代码
//查询所有名字姓张,第二个为数字,第三个为燕的记录

select * from student where name like '张[0-9]燕'

//查询所有名字姓张,第二个为字母,第三个为燕的记录

select * from student where name like '张[a-z]燕'

//查询所有名字姓张,中间为1个字母或1个数字,第三个为燕的名字。字母大小写可以通过约束设定,不区分大小写

select * from student where name like '张[0-9a-z]燕'

//查询所有名字姓张,第二个不为数字,第三个为燕的记录

select * from student where name like '张[!0-9]燕' 

//查询名字除了张开头妹结尾中间是数字的记录

select * from student where name not like '张[0-9]燕'

4. 查询包含通配符的字符串

sql 复制代码
//查询姓名包含通配符%的记录

 select * from student where name like '%[%]%'                //通过[]转义

//查询姓名包含[的记录

 select * from student where name like '%/[%' escape '/'    //通过指定'/'转义

//查询姓名包含通配符[]的记录

 select * from student where name like '%/[/]%' escape '/'    //通过指定'/'转义

到此这篇关于SQL实现模糊查询的四种方法总结的文章就介绍到这了。

相关推荐
远歌已逝2 小时前
维护在线重做日志(二)
数据库·oracle
qq_433099403 小时前
Ubuntu20.04从零安装IsaacSim/IsaacLab
数据库
Dlwyz3 小时前
redis-击穿、穿透、雪崩
数据库·redis·缓存
工业甲酰苯胺5 小时前
Redis性能优化的18招
数据库·redis·性能优化
没书读了6 小时前
ssm框架-spring-spring声明式事务
java·数据库·spring
i道i7 小时前
MySQL win安装 和 pymysql使用示例
数据库·mysql
小怪兽ysl7 小时前
【PostgreSQL使用pg_filedump工具解析数据文件以恢复数据】
数据库·postgresql
武子康7 小时前
Java-06 深入浅出 MyBatis - 一对一模型 SqlMapConfig 与 Mapper 详细讲解测试
java·开发语言·数据仓库·sql·mybatis·springboot·springcloud
wqq_9922502777 小时前
springboot基于微信小程序的食堂预约点餐系统
数据库·微信小程序·小程序
爱上口袋的天空7 小时前
09 - Clickhouse的SQL操作
数据库·sql·clickhouse