2019-02-25 SQL:cast(itemvalue as decimal(19,4))

本文详细解析了在SQL中处理nvarchar(max)数据类型时遇到的常见错误,包括使用SUM操作符时的无效数据类型错误,nvarchar值转换为int类型的失败案例,以及varchar转numeric时的错误。文章提供了正确的解决方案,例如使用decimal(19,4)进行数据转换,并通过ISNUMERIC函数检查数值有效性。
摘要由CSDN通过智能技术生成

1.Operand data type nvarchar(max) is invalid for sum operator

 要转换格式

2.Conversion failed when converting the nvarchar value '236850.00' to data type int.

 不能转换int,用decimal(19,4),19位整数,4位小数

3.Error converting data type varchar to numericm

 遇到非字符串的要跳过,如19亿

4.字符串前面加N,否则报错

5.正确操作

select SUM(cast(itemvalue as decimal(19,4))) from [TrustManagement].[TrustBond]
where ItemCode=N'OfferAmount' and ISNUMERIC(ItemValue)=1 

  

转载于:https://www.cnblogs.com/theDataDigger/p/10431867.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值