首 页
网络学院
视频教程
资源下载
HOT
实例教程
图文教程
专题中心
学习社区
繁體中文
当前位置:
首页
>
图文教程
>
数据库
>
MSSQL
> 谈谈sql查询的between
MSSQL
SQL Server数据库技术(102)
SQL Server数据库技术(103)
SQL Server数据库技术(104)
SQL Server数据库技术(105)
SQL Server数据库技术(106)
SQL Server数据库技术(107)
SQL Server数据库技术(108)
SQL Server数据库技术(109)
SQL Server数据库技术(110)
SQL Server数据库技术(111)
SQL Server数据库技术(112)
SQL Server数据库技术(113)
SQL Server数据库技术(114)
SQL Server数据库技术(115)
SQL Server数据库技术(116)
SQL Server数据库技术(117)
SQL Server数据库技术(118)
SQL Server数据库技术(119)
SQL Server数据库技术(120)
SQL Server数据库技术(121)
No.
«
‹
69
70
71
72
›
»
技术文章搜索
关键字
MSSQL 中的 谈谈sql查询的between
出处:
互联网
整理:
软晨网(RuanChen.com)
发布:
2009-10-30
浏览: 56 ::
收藏到网摘: n/a
全文本检索的应用(3)
用SQL Server为Web浏览器提供图像(一)(转)
作者:啊亮
发表于ASP地带,2000-11-25 21:42
例子1:求年龄在20与22岁之间(包括20 和 22)的学生的学号和年龄
select number,age
from s
where age between 20 and 22
例子2:求年龄不在20与22岁之间的学生的学号和年龄
select number,age
from s
where age not between 20 and 22
注意:between后面是低值,and 后面是高值!
全文本检索的应用(3)
用SQL Server为Web浏览器提供图像(一)(转)
评论 (0)
All
登陆
还没注册?