0
点赞
收藏
分享

微信扫一扫

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

ZSACH 2023-11-09 阅读 39

以下结果为 0, 而不是0.01

select null as column1 into #table1

update #table1 set column1=0.01

select * from #table1



举报

相关推荐

0 条评论