SQL Server中ISNULL函数介绍

时间:2009-09-09 21:23:00 

ISNULL  
  使用指定的替换值替换   NULL。  
   
  语法  
  ISNULL   (   check_expression   ,   replacement_value   )    
   
  参数  
  check_expression  
   
  将被检查是否为   NULL的表达式。check_expression   可以是任何类型的。  
   
  replacement_value  
   
  在   check_expression   为   NULL时将返回的表达式。replacement_value   必须与   check_expresssion   具有相同的类型。    
   
  返回类型  
  返回与   check_expression   相同的类型。  
   
  注释  
  如果   check_expression   不为   NULL,那么返回该表达式的值;否则返回   replacement_value。  
   
  示例  
  A.   将   ISNULL   与   AVG   一起使用  
  下面的示例查找所有书的平均价格,用值   $10.00   替换   titles   表的   price   列中的所有   NULL   条目。  
   
  USE   pubs  
  GO  
  SELECT   AVG(ISNULL(price,   $10.00))  
  FROM   titles  
  GO  
   
  下面是结果集:  
   
  --------------------------    
  14.24                                              
   
  (1   row(s)   affected)  
   
  B.   使用   ISNULL  
  下面的示例为   titles   表中的所有书选择书名、类型及价格。如果一个书名的价格是   NULL,那么在结果集中显示的价格为   0.00。  
   
  USE   pubs  
  GO  
  SELECT   SUBSTRING(title,   1,   15)   AS   Title,   type   AS   Type,    
        ISNULL(price,   0.00)   AS   Price  
  FROM   titles  
  GO  
   
  下面是结果集:  
   
  Title                       Type                   Price                      
  ---------------   ------------   --------------------------    
  The   Busy   Execut   business           19.99                                              
  Cooking   with   Co   business           11.95                                              
  You   Can   Combat     business           2.99                                                
  Straight   Talk   A   business           19.99                                              
  Silicon   Valley     mod_cook           19.99                                              
  The   Gourmet   Mic   mod_cook           2.99                                                
  The   Psychology     UNDECIDED         0.00                                                
  But   Is   It   User     popular_comp   22.95                                              
  Secrets   of   Sili   popular_comp   20.00                                              
  Net   Etiquette       popular_comp   0.00                                                
  Computer   Phobic   psychology       21.59                                              
  Is   Anger   the   En   psychology       10.95                                              
  Life   Without   Fe   psychology       7.00                                                
  Prolonged   Data     psychology       19.99                                              
  Emotional   Secur   psychology       7.99                                                
  Onions,   Leeks,     trad_cook         20.95                                              
  Fifty   Years   in     trad_cook         11.95                                              
  Sushi,   Anyone?     trad_cook         14.99                                              
   
  (18   row(s)   affected)  

标签:函数,ISNULL,sql,server
0
投稿

猜你喜欢

  • sqlserver 脚本和批处理指令小结

    2012-05-22 18:56:55
  • ASP日期和时间函数用法详解

    2007-10-13 19:33:00
  • asp如何用HtmlEncode来显示Unicode编码?

    2010-06-12 12:49:00
  • 提升设计品质的8个布局方案[译]

    2010-03-18 16:06:00
  • SQL Server数据库占用过多内存的解决方法

    2009-10-23 14:02:00
  • asp如何直接调用Excel数据?

    2010-06-28 18:26:00
  • oracle chm帮助文件下载

    2010-07-16 12:49:00
  • 怎么用FSO生成一个UNICODE格式的文本文件

    2009-05-26 15:40:00
  • 教程:MySQL中多表操作和批处理方法

    2009-07-30 08:20:00
  • Ajax的错误处理机制探讨

    2007-09-07 09:53:00
  • Oracle 函数大全

    2009-07-23 14:29:00
  • ASP 关于动态数据显示页面得锚点

    2007-11-04 20:28:00
  • 用ASP动态生成JS表单验证代码

    2007-09-30 20:38:00
  • Mini,又个 Javascript 选择器

    2009-10-06 14:48:00
  • ASP开发的WAP格式简易邮件系统实例

    2008-06-10 17:00:00
  • 一次性压缩Sqlserver2005中所有库日志的存储过程

    2012-01-29 17:58:28
  • Sql2005启用和关闭xp_cmdshell功能

    2008-09-29 15:37:00
  • Ajax缓存和编码问题的最终解决方案

    2010-03-30 13:42:00
  • 如何实现文件上传并自动归类功能?

    2010-05-24 18:37:00
  • 双击编辑功能如何实现

    2008-02-26 16:17:00
  • asp之家 网络编程 m.aspxhome.com