• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

交叉表,为什么不行?解决思路

mysql 搞代码 7年前 (2018-06-01) 99次浏览 已收录 0个评论

交叉表,为什么不行?
drop   table   if   exists   Test;
create   table   Test(
`id`   int   not   null   auto_increment   primary   key,
`name`   varchar(50)   not   null,
`subject`   varchar(50)   null,
`score`   int   null
)engine=myisam;

insert   into   test(`name`,`subject`,`score`)   values( 'zhangsan ', 'chinese ',60);
insert   into   test(`name`,`subject`,`score`)   values( 'zhangsan ', 'math ',75);
insert   into   test(`name`,`subject`,`score`)   values( 'zhangsan ', 'engish ',90);

insert   into   test(`name`,`subject`,`score`)   values( 'lisi ', 'chinese ',80);
insert   into   test(`name`,`subject`,`score`)   values( 'lisi ', 'math ',90);
insert   into   test(`name`,`subject`,`score`)   values( 'lisi ', 'engish ',50);

select   `name`,sum(case   `subject`   when   'chinese '   then   score   else   0   end)   as   'chinese ',
sum(case   `subject`   when   'math '   then   score   else   0   end)   as   'math ',
sum(case   `subject`   when   'engish '   then   score   else   0   end)   as   'engish '
from   test
group   by   `name`

查询结果跟原数据有点出入..

——解决方案——————–
没有出入。
你要像按照顺序排的话,可以:

select * from test;
select `name`,sum(case `subject` when 'chinese ' then score else 0 end) as 'chinese ',
sum(case `subject` when 'math ' then score else 0 end) as 'math ',
sum(case `subject` when 'engish ' then score else 0 end) as 'engish '
from test
group by `name` order by id;

query result(2 records)
name chinese math engish
zhangsan 60 75 90
lisi 80 90 50


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:交叉表,为什么不行?解决思路

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址