模糊查询

Posted tangtangsimida

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模糊查询相关的知识,希望对你有一定的参考价值。

--【1.模糊查询 like 通配符%】
--以汤开头后面随便多少位都有可以
select name,sex,id from hanshu where name LIKE ‘汤%‘
--只要有汤的都会显示出来
select name,sex,id from hanshu where name LIKE ‘%汤%‘

--【2.BETWEE..AND 数字包含之间,包含起止值,必须是从小到大,例如:2-9 不可9-2】
--查询结果是moeny2-9之间的起止值
select * from hanshu where moeny BETWEEN 2 AND 9

--NOT 相反
select * from hanshu where moeny NOT BETWEEN 2 AND 9

--相同语法大于2小于9
select * from hanshu where moeny>=2 and moeny<=9

--【IN】在列举值范围进行查找(可以与日期、数值、字符型一起使用)


--查询‘汤慧’和‘刘丹’的信息
select * from hanshu where name in (‘汤慧‘,‘刘丹‘) --可以是字符串

select * from hanshu where moeny in (5,6) --可以是数值

select * from hanshu where data in (‘2018-2-2‘,‘2018-6-8‘) --可以是日期











以上是关于模糊查询的主要内容,如果未能解决你的问题,请参考以下文章

C# Linq的模糊查询(包含精确模糊查询)

java 中模糊查询

模糊查询

mybatis中的模糊查询

怎样基于Redis实现模糊查询

jsp如何实现模糊查询