当前位置:  开发笔记 > 数据库 > 正文

施放给出错误

如何解决《施放给出错误》经验,为你挑选了1个好方法。

为什么这个简单的代码会给我一个错误:

将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类型值的字段的所有实例.



1> Brian Pressl..:

SQL Server不希望将看起来像十进制的数字字符串转换为整数,因为您可能会丢失精度.你可以用圆函数欺骗它:

select cast(round(value,0) as INT)  
from CV3BasicObservation  (nolock)
where cast(round(value,0) as INT) >= 110

注意:您必须对value显式转换它的字段的所有实例执行此操作,int或者将其隐式转换为比较int类型值的字段的所有实例.

推荐阅读
农大军乐团_697
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有