查询 sql 语句,为null转换为0怎么做

例子select((selectsum(S*R)fromt_Abwhereb.ID=3092andb.OrderID=512andb.Ivt=1fromt_B... 例子
select ((select sum(S*R) from t_A b where b.ID = 3092 and b.OrderID = 512 and b.Ivt=1from t_B
展开
 我来答
全视弗里曼
推荐于2018-05-07 · TA获得超过4180个赞
知道大有可为答主
回答量:3378
采纳率:0%
帮助的人:2833万
展开全部
update TABLE set 字段名=0 where isnull(字段名)

把字段名改为你的实际字段名,TABLE改为你实际表名。
追问
update T_Product set TotalQuantity = TotalQuantity + isnull((select sum(SSQuan*RCKState) from T_OrderItem b where b.PrdID = 3092 and  b.OrderID = 512 and b.IvtBkorNot=0),0) where PrdID = 3092

是不是这样呀,,但是不行呀?
yu46612143
2012-08-21 · TA获得超过105个赞
知道小有建树答主
回答量:172
采纳率:100%
帮助的人:112万
展开全部
oracle的话用nvl。
如:select nvl(null,0) a from dual

mysql的话用ifnull。
如:select ifnull(null,0) a from dual

其它数据库的不懂
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
极品老土豆
2012-08-21 · TA获得超过138个赞
知道小有建树答主
回答量:148
采纳率:0%
帮助的人:87.3万
展开全部
ISNULL(字段名称,0)
更多追问追答
追问
update T_Product set TotalQuantity = isnull(TotalQuantity,0) + isnull((select sum(SSQuan*RCKState) from T_OrderItem b where b.PrdID = 3092 and  b.OrderID = 512 and b.IvtBkorNot=0),0) where PrdID = 3092
是不是这样呀,但是不行呀?
追答
你update少了个U,第二,我没你这么用过,我一般是这么用,(select isnull(sum(SSQuan*RCKState) ,0)from T_OrderItem b where b.PrdID = "+PrdID+" and  b.OrderID = "+ID+" and b.IvtBkorNot=0)

不过你可以都运行下,试试看看哪个行,如果你敲的可以运行,请告诉我下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式