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)