看SQL视频,这个题目尝试了很久都没做出来,请高手帮忙解答。3Q
作者: 王卫 时间: 2012-5-20 09:09
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