qq_38599193 2017-05-08 09:07 采纳率: 85.7%
浏览 917
已采纳

Sql小白请教下数据转换问题

select Name,

sum(case Course when '语文' then Gradeid else '0' end) as 语文,

sum(case Course when '数学' then Gradeid else '0' end) as 数学,

sum(case Course when '英语' then Gradeid else '0' end) as 英语

from student

group by Name

图片说明图片说明

  • 写回答

5条回答 默认 最新

  • 普通网友 2017-05-08 09:07
    关注

    case when语法写的有点儿问题
    try

     select Name,
    sum(case  when Course = '语文' then Gradeid else 0 end) as 语文,
    sum(case  when Course = '数学' then Gradeid else 0 end) as 数学,
    sum(case when Course =  '英语' then Gradeid else 0 end) as 英语
    from student
    group by Name
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 halcon23.11安装
  • ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题