当前位置:   article > 正文

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

sql模糊查询

目录

 

一、一般模糊查询

二、利用通配符查询

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

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

3. [ ]表示筛选范围

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


一、一般模糊查询

1. 单条件查询

  1. //查询所有姓名包含“张”的记录
  2. select * from student where name like '张'

2. 多条件查询

  1. //查询所有姓名包含“张”,地址包含四川的记录
  2. select * from student where name like '张' and address like '四川'
  3. //查询所有姓名包含“张”,或者地址包含四川的记录
  4. select * from student where name like '张' or address like '四川'

 

二、利用通配符查询

通配符:_ 、% 、[ ]

 

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

  1. //查询所有名字姓张,字长两个字的记录
  2. select * from student where name like '张_'
  3. //查询所有名字姓张,字长三个字的记录
  4. select * from student where name like '张__'

 

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

  1. //查询所有名字姓张,字长不限的记录
  2. select * from student where name like '张%'
  3. //查询所有名字姓张,字长两个字的记录
  4. select * from student where name like '张%'and len(name) = 2

 

3. [ ]表示筛选范围

  1. //查询所有名字姓张,第二个为数字,第三个为燕的记录
  2. select * from student where name like '张[0-9]燕'
  3. //查询所有名字姓张,第二个为字母,第三个为燕的记录
  4. select * from student where name like '张[a-z]燕'
  5. //查询所有名字姓张,中间为1个字母或1个数字,第三个为燕的名字。字母大小写可以通过约束设定,不区分大小写
  6. select * from student where name like '张[0-9a-z]燕'
  7. //查询所有名字姓张,第二个不为数字,第三个为燕的记录
  8. select * from student where name like '张[!0-9]燕' 
  9. //查询名字除了张开头妹结尾中间是数字的记录
  10. select * from student where name not like '张[0-9]燕'

 

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

  1. //查询姓名包含通配符%的记录
  2.  select * from student where name like '%[%]%'                //通过[]转义
  3. //查询姓名包含[的记录
  4.  select * from student where name like '%/[%' escape '/'    //通过指定'/'转义
  5. //查询姓名包含通配符[]的记录
  6.  select * from student where name like '%/[/]%' escape '/'    //通过指定'/'转义

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

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/424463
推荐阅读
相关标签
  

闽ICP备14008679号