• SQL Server中的between(在某个范围)


    SQL Server中的between(在某个范围)

    2018年08月19日 09:21:36 码仙♥ 

    一、建库和建表

    1. create database scort

    2. use scort

    3. create table emp

    4. (

    5. empno int primary key,

    6. ename nvarchar(10),

    7. sal int

    8. )

    9. insert into emp values (7369,'smith',2800);

    10. insert into emp values (7499,'allen',1500);

    11. insert into emp values (7521,'ward',3500);

    12. insert into emp values (7566,'jones',1300);

    13. insert into emp values (7654,'martin',1600);

    14. insert into emp values (7698,'blake',3000);

    二、between的用法

    
     
    1. --查找sal在1500和3000之间的信息(包括1500和3000)

    2. select * from emp where sal >= 1500 and sal <=3000

    3. --等价于

    4. select * from emp where sal between 1500 and 3000

    
     
    1. --查找sal小于1500或大于3000之间的信息(不包括1500和3000)

    2. select * from emp where sal < 1500 or sal >3000

    3. --等价于

    4. select * from emp where sal not between 1500 and 3000

    本篇博客来自于郝斌老师视频教程的总结以及笔记的整理,仅供学习交流,切勿用于商业用途,如有侵权,请联系博主删除,博主QQ:194760901 

  • 相关阅读:
    博客停止更新了,新博客地址见github
    SSH登录过程
    哈希表结构
    静态链接、动态链接
    编译、汇编、链接、加载
    IO复用 select epoll
    kali安装盘
    linux常用命令
    DDOS攻击防范系统的设计与实现
    20155202《网络对抗》Exp9 web安全基础实践
  • 原文地址:https://www.cnblogs.com/grj001/p/12225607.html
Copyright © 2020-2023  润新知