欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

必须会的SQL语句(五) NULL数据处理和类型转换

程序员文章站 2024-01-27 11:07:34
1.null数据的处理     1)检索出null值        ...

1.null数据的处理

    1)检索出null值
              select * from 表 where xx is null
  
    2)null值替换
     select
         name,
         isnull ( cast (字段 as varchar(20)) , '空')
     from 表名
 
2.数据类型转换
    1)cast
        --'101'可以用表中字段来替换
        select cast('101' as varchar(20))
  
    2)convert
        select convert(varchar(20),100)