gpt4 book ai didi

sql - 转换为 Integer 无法正常工作?

转载 作者:行者123 更新时间:2023-12-03 03:05:53 25 4
gpt4 key购买 nike

执行这些并检查结果为什么会这样?

declare @a decimal(8,3) =235.363
declare @b int =1

select case @b
when 1 then cast(@a as int)
when 2 then CAST(@a as decimal(8,3))
end

Result : 235.000
<小时/>
declare @a decimal(8,3) =235.363
declare @b int =1

select case @b
when 1 then cast(@a as int)
--when 2 then CAST(@a as decimal(8,3))
end

Result : 235
<小时/>
declare @a decimal(8,3) =235.363
declare @b int =1

select case @b
when 1 then cast(@a as tinyint)
when 2 then CAST(@a as float)
end

Result : 235

最佳答案

所见并非所得。

对于列type,SQL Server 选择正确的、更宽的类型(float over tinyintdecimal超过int)。您可以通过执行 select into 来验证这一点而不仅仅是选择。

只是显示规则不同。
当所选列类型为 float 时,如果没有小数部分,您将看不到尾随的 .000
对于设置了显式位置的 decimal,例如 decimal(8,3),即使没有小数部分,您也会看到尾随的 .000 。如果删除说明符并仅保留 decimal 作为列类型,.000 将消失。

所有这些都不会影响实际的列类型,它始终是最宽的类型。

关于sql - 转换为 Integer 无法正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8543224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com