查询 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 展开
select ((select sum(S*R) from t_A b where b.ID = 3092 and b.OrderID = 512 and b.Ivt=1from t_B 展开
3个回答
展开全部
update TABLE set 字段名=0 where isnull(字段名)
把字段名改为你的实际字段名,TABLE改为你实际表名。
把字段名改为你的实际字段名,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
是不是这样呀,,但是不行呀?
展开全部
oracle的话用nvl。
如:select nvl(null,0) a from dual
mysql的话用ifnull。
如:select ifnull(null,0) a from dual
其它数据库的不懂
如:select nvl(null,0) a from dual
mysql的话用ifnull。
如:select ifnull(null,0) a from dual
其它数据库的不懂
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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)
不过你可以都运行下,试试看看哪个行,如果你敲的可以运行,请告诉我下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询