主题:如何改变 select 语句产生的字段中的null 为 0
福建龙儿
[专家分:0] 发布于 2006-01-21 14:41:00
如何改变 select 语句产生的字段中的null 为 0 ? 由于null无法计算,所以希望select得到的值中没有 null . xiexie
回复列表 (共3个回复)
沙发
cwb1128 [专家分:3120] 发布于 2006-01-21 14:54:00
select isnull(字段名称, 0)
板凳
福建龙儿 [专家分:0] 发布于 2006-01-21 17:22:00
[quote]select isnull(字段名称, 0)[/quote]
成了,谢谢
3 楼
yxpke [专家分:100] 发布于 2006-05-07 19:38:00
update 表 set 字段=0 where 字段 is null
我来回复