为什么这个简单的代码会给我一个错误:
将varchar值'3.0'转换为数据类型int时转换失败.
select cast(value as INT) from CV3BasicObservation (nolock) where value >= 110
Brian Pressl.. 5
SQL Server不希望将看起来像十进制的数字字符串转换为整数,因为您可能会丢失精度.你可以用圆函数欺骗它:
select cast(round(value,0) as INT) from CV3BasicObservation (nolock) where cast(round(value,0) as INT) >= 110
注意:您必须对value
显式转换它的字段的所有实例执行此操作,int
或者将其隐式转换为比较int
类型值的字段的所有实例.
SQL Server不希望将看起来像十进制的数字字符串转换为整数,因为您可能会丢失精度.你可以用圆函数欺骗它:
select cast(round(value,0) as INT) from CV3BasicObservation (nolock) where cast(round(value,0) as INT) >= 110
注意:您必须对value
显式转换它的字段的所有实例执行此操作,int
或者将其隐式转换为比较int
类型值的字段的所有实例.