SQL Server 临时表的数值精度损失问题

以下结果为 0, 而不是0.01

select null as column1 into #table1

update #table1 set column1=0.01

select * from #table1

原文地址:https://www.cnblogs.com/emanlee/p/1467499.html