mssql将数据插入十进制数据类型
我正在尝试将数据更新到数据类型为decimal(18, 18) 的列中。
它抛出错误
Arithmetic overflow error converting varchar to data type numeric.
我的查询是
UPDATE tblname SET latitude ='55.27898669242859', longitude = '25.19762644777814' WHERE id = 1
当我删除引号(')并运行时我收到以下错误
Arithmetic overflow error converting numeric to data type numeric.
我已经使用了 CAST 和 CONVERT 也不起作用。
有人能猜出原因吗?
I am trying to update data into the column with data type decimal(18, 18).
It is throwing on error
Arithmetic overflow error converting varchar to data type numeric.
My query is
UPDATE tblname SET latitude ='55.27898669242859', longitude = '25.19762644777814' WHERE id = 1
when I remove the quotes(') and run i am getting below error
Arithmetic overflow error converting numeric to data type numeric.
I have used CAST and CONVERT also it is not working .
can anyone guess the reason??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在定义表时您犯了错误。将列重新定义为decimal(18,10)意味着您可以存储小数点后10位数字。通过定义decimal(18,18),您可以在表中存储小于1的十进制值,例如: 0.278986692。
While defining the table you have made the mistake. Redefine the column as decimal(18,10) means you can store 10 digits after decimal. By defining decimal(18,18), you can store decimal value less than 1 in the table eg. 0.278986692.