sql 中 sum()和count()计算平均值的问题
drop table #tb1
create table #tb1
(
zhuanye varchar(50),
dengji varchar(50),
psum int,
savg float
)
insert #tb1 (zhuanye,dengji,psum,savg)
select distinct (case when left(banji.bjname,3)='计算机' then '计算机'
else '厨师'
end) zy,
(case when chengji.cj<60 then '不及格'
when chengji.cj<70 and chengji.cj>=60 then '及格'
when chengji.cj<90 and chengji.cj>=70 then '良好'
else '优秀' end) dj,
count(bjxs.xsid) rs,
[u]sum(chengji.cj)/count(bjxs.xsid) pjf[/u]
from banji
join bjxs on banji.bjid=bjxs.bjid
join xuesheng on xuesheng.xsid=bjxs.xsid
join chengji on chengji.xsid=bjxs.xsid
group by (case when left(banji.bjname,3)='计算机' then '计算机'
else '厨师'
end),(case when chengji.cj<60 then '不及格'
when chengji.cj<70 and chengji.cj>=60 then '及格'
when chengji.cj<90 and chengji.cj>=70 then '良好'
else '优秀' end)
select * from #tb1
上面的红线地方的数据在数据量很大的情况下,会出现数据有误么?该怎么处理
[解决办法]
--10亿
select POWER(10,9)
/*
1000000000
*/
--100亿,报错
select POWER(10,10)
/*
消息 232,级别 16,状态 3,第 7 行
类型 int 发生算术溢出错误,值 = 10000000000.000000。
*/
--结果是1000万亿,也没报错
select SUM(POWER(cast(10 as bigint),15)) / count(power(cast(10 as bigint),15))