sql-server – sql server中的列总和算术溢出

前端之家收集整理的这篇文章主要介绍了sql-server – sql server中的列总和算术溢出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图得到一个列,但是当我运行这个查询我得到以下错误.任何建议?
SELECT SUM(Size) as total
FROM  AllDocs
Where DirName LIKE 'sites/test/test%'


ERROR:
Msg 8115,Level 16,State 2,Line 1
Arithmetic overflow error converting expression to data type int.
Warning: Null value is eliminated by an aggregate or other SET operation.

解决方法

虽然所有的尺寸都可以适应于INT(最多2 ^ 31 – 1),但它们的SUM不能.

把它们变成BIGINT:

SELECT  SUM(CAST(Size AS BIGINT)) as total
FROM    AllDocs
WHERE   DirName LIKE 'sites/test/test%'
原文链接:https://www.f2er.com/mssql/82741.html

猜你在找的MsSQL相关文章