select Name,
sum(case Score
when N'胜' then 1
else 0
end) as 胜,
sum(case Score
when N'负' then 1
else 0
end) as 负, from T_Score
group by Name
这题 首先 有 三列 所以 --- select 后面就会有:Name,胜,负----
这时 想想 看 胜如何 得到,负如何得到---
case Score
when N'胜' then 1
else 0
end 如果 Score ='胜' 记录 1 否则记录 0
然后,按照 Name 分组 ,将 胜 和 负 的 结果求和,就能得到 所要的 格式 输出了--- |