码迷,mamicode.com
首页 > 数据库 > 详细

sql server判断是否为null

时间:2014-12-11 13:51:37      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:ar   for   sql   oracle   rom   server   select   rac   c   

sql server

  替换null:isnull(arg,value)

  如:select isnull(price,0.0) from orders ,如果price为null的话,用0.0替换

  与null比较: is not null,is null

  如 select * from orders where price is null ,price等于null

  如: select * from orders where price is not null ,price不等于null

  Oracle

  替换null: nvl(arg,value)

  如: select nvl(price,0.0) form orders

  与null比较: is not null,is null

  如 select * from orders where price is null ,price等于null

  如: select * from orders where price is not null ,price不等于null

sql server判断是否为null

标签:ar   for   sql   oracle   rom   server   select   rac   c   

原文地址:http://www.cnblogs.com/toSeeMyDream/p/4157389.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!