首页 > 其他 > 详细

null 转换为别的类型,并比较大小

时间:2014-10-17 18:16:34      阅读:228      评论:0      收藏:0      [点我收藏+]

select  1
where   convert(datetime,‘2014-10-16‘,120) < getdate()  and getdate() < convert(datetime,null,120)

 

结果为

-----------

(0 行受影响)

 

select  1
where   convert(datetime,‘2014-10-16‘,120) < convert(datetime,‘2014-11-16‘,120)

 

结果为

----------- 1

(1 行受影响)

 

 

 

select convert(datetime,null,120)

结果为

----------------------- NULL

(1 行受影响)

null 转换为别的类型,并比较大小

原文:http://www.cnblogs.com/ConstSurpass/p/4031728.html

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