sql-server – mssql将varchar转换为float

前端之家收集整理的这篇文章主要介绍了sql-server – mssql将varchar转换为float前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的字段值产品长度为0.123.这是一个视图,数据类型为varchar.

我需要将它转换为浮点数或数值,以便执行数学比较.

转换(浮点,productlength)

cast(productlength as float)都不起作用.

错误varchar不能转换为float或somethiing liek.

从我所读的varchar可以简单地不能转换为数字字符串?

有什么聪明的方法吗?

解决方法

您可以将varchars转换为浮点数,并且可以按照表达的方式执行.您的varchar不能是数值.其中必须有其他东西.您可以使用IsNumeric进行测试.看到这个:
declare @thing varchar(100)

select @thing = '122.332'

--This returns 1 since it is numeric.
select isnumeric(@thing)

--This converts just fine.
select convert(float,@thing)

select @thing = '122.332.'

--This returns 0 since it is not numeric.
select isnumeric(@thing)

--This convert throws.
select convert(float,@thing)
原文链接:https://www.f2er.com/mssql/77573.html

猜你在找的MsSQL相关文章