首页 > 其他 > 详细

模糊查询

时间:2018-08-21 00:19:10      阅读:221      评论:0      收藏:0      [点我收藏+]

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

模糊查询

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!