MySql存储过程根据基础表向统计表导值

简单说就是客服通话表A,有坐席ID(agentid)和服务评价(content)2个字段客服通话评价统计表B,有坐席ID(agentid)和好评(good)、中评(nor... 简单说就是
客服通话表A,有坐席ID(agentid)和服务评价(content)2个字段
客服通话评价统计表B,有坐席ID(agentid)和好评(good)、中评(normal)、差评(bad)4个字段
就像10086人工服务后要评价满意度一样,
表A存了所有客服当天的每一条记录(每通电话都有一条记录);
表B统计每个客服一天下来好、中、差评的数量
现在要,根据表A的content存的值是1、2、3,分别代表好、中、差。将表A的数据统计到表B中,存储过程如何写?
展开
 我来答
百度网友d9b156865
2015-05-13 · TA获得超过165个赞
知道小有建树答主
回答量:384
采纳率:33%
帮助的人:196万
展开全部
select agentid,sum(good) as good,sum(normal) as normal,sum(bad) as bad
from
(select agentid,1 as good,0 as normal,0 as bad
from A where content=1
union all
select agentid,0 as good,1 as normal,0 as bad
from A where content=2
union all
select agentid,0 as good,0 as normal,1 as bad
from A where content=3
)B
group by agentid
更多追问追答
追问
首先感谢你的回答,但是我需要按天统计然后插入B表,B表中除了好、中、差之外还有个字段评价数(用来统计每个客服当天评价的数量),然后还有个统计日期,如何做。。。先提高20分悬赏,解决后追加100~
追答
select agentid,date,SUM(count)as count,sum(good) as good,sum(normal) as normal,sum(bad) as bad
from
(select agentid,date,1 as count,1 as good,0 as normal,0 as bad
from A where content=1
union all
select agentid,date,1 as count,0 as good,1 as normal,0 as bad
from A where content=2
union all
select agentid,date,1 as count,0 as good,0 as normal,1 as bad
from A where content=3
)B
group by agentid,date
这样??
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式