操作逻辑如下:
1、新建一张临时表,将字段设置为了varchar(12),;
举例如下:
select a.Fid,cast('' as varchar(12)) as Col1, cast('' as varchar(12)) as Col2,…… into #001_test1 from tabl1 a
2、使用了现有数据库里的数据,生成一张临时表
select a.*,isnull(b.Sumcol,0) as Sumcol from table1 a left join (select fid,sum(coln)
#001_test2
from table2 group by fid) b on a.fid=b.fid;
3.使用2表中的Sumcol更新1表中的数据;
update a set
a.col1=b.Sumcol
from #001_test1 a,#002_test2 b
where a.fid=b.fid
结果报错:将 numeric 转换为数据类型 varchar 时出现算术溢出错误。
操作环境、软件版本等信息
MS SQL 2012
尝试过的解决方法
尝试如下解决方案,仍然报以上错误:
1--
update a set
a.col1=cast(b.Sumcol as varchar(12))
from #001_test1 a,#002_test2 b
where a.fid=b.fid
2--
update a set
a.col1=convert(varchar(12),b.Sumcol)
from #001_test1 a,#002_test2 b
where a.fid=b.fid
我想要达到的结果
希望能够更新数据成功;