码迷,mamicode.com
首页 > 其他好文 > 详细

模糊查询

时间:2018-08-21 00:28:36      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:sel   显示   name   2-2   where   数字   数值   包含   范围   

--【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‘) --可以是日期

模糊查询

标签:sel   显示   name   2-2   where   数字   数值   包含   范围   

原文地址:https://www.cnblogs.com/tangtangsimida/p/9508911.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!