我有这个查询:
SELECT
client,
month1,
month2,
month3,
month4,
month5,
month6,
(isnull(month1, 0) +
isnull(month2, 0) +
isnull(month3, 0) +
isnull(month4, 0) +
isnull(month5, 0) +
isnull(month6, 0)) /6 as prom
FROM client_total_sales
月份可以有空值。
我尝试使用round,转换数据类型,但问题仍然存在。
SQL Server Management Studio 在加载查询期间显示错误,我的意思是在错误出现之前查看一些结果。
错误信息:男士。8115, Level 16, State 2, Line 1 Error de desbordamiento aritmético (算术溢出错误) al convertir expression al tipo de datos int.