首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

SQL中的decimal类型的要让其空该如何做

2012-02-01 
SQL中的decimal类型的要让其空该怎么做selectisnull(score,)asscorefromAscore是decimal这个类型的话,报转

SQL中的decimal类型的要让其空该怎么做
select   isnull(score, ' ')   as   score   from   A  
score是decimal这个类型的话,报转换类型出错,帮帮忙,大家


[解决办法]
这样:
select isnull(score,0.0) as score from A

热点排行