在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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)
评论
请发表评论