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_Scores
group by Name
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
输出结果:
Name 胜 负
拜仁 1 2
湖人 1 0
奇才 2 0
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|