首页 > 数据库技术 > 详细

sql查询——范围查询(区间查询)

时间:2019-07-24 09:14:02      阅读:122      评论:0      收藏:0      [点我收藏+]
 1 --范围查询(区间查询)
 2   --in()
 3   --查询年龄为18,28,38的人   select *from student where age=18 or age=28 or age=38;
 4   select *from student where age in(18,28,38);
 5   --not in
 6   --查询年龄为18,28,38的人   select *from student where not (age=18 or age=28 or age=38);
 7   select *from student where age not in (18,28,38);
 8   --between...and...
 9   --查询12-18的人
10   select *from student where age between 12 and 18;
11   -- not between...and...
12   -- 查询年龄不在12-18的人
13   select *from student where age not between 12 and 18;
14   -- 失败select *from student where age not (between 12 and 18);
15 
16 
17 --判断空
18       -- is null
19       -- 判断年龄是否为空
20       select *from student where age is null;
21       -- is not NULL
22       -- 判断年龄不为空
23       select *from student where age is not null;

 

sql查询——范围查询(区间查询)

原文:https://www.cnblogs.com/jum-bolg/p/11235427.html

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