赞
踩
目录
1. 单条件查询
- //查询所有姓名包含“张”的记录
-
- select * from student where name like '张'
2. 多条件查询
- //查询所有姓名包含“张”,地址包含四川的记录
-
- select * from student where name like '张' and address like '四川'
-
- //查询所有姓名包含“张”,或者地址包含四川的记录
-
- select * from student where name like '张' or address like '四川'
通配符:_ 、% 、[ ]
- //查询所有名字姓张,字长两个字的记录
-
- select * from student where name like '张_'
-
- //查询所有名字姓张,字长三个字的记录
-
- select * from student where name like '张__'
- //查询所有名字姓张,字长不限的记录
-
- select * from student where name like '张%'
-
- //查询所有名字姓张,字长两个字的记录
-
- select * from student where name like '张%'and len(name) = 2
- //查询所有名字姓张,第二个为数字,第三个为燕的记录
-
- 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]燕'
- //查询姓名包含通配符%的记录
-
- select * from student where name like '%[%]%' //通过[]转义
-
- //查询姓名包含[的记录
-
- select * from student where name like '%/[%' escape '/' //通过指定'/'转义
-
- //查询姓名包含通配符[]的记录
-
- select * from student where name like '%/[/]%' escape '/' //通过指定'/'转义
到此这篇关于SQL实现模糊查询的四种方法总结的文章就介绍到这了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。