SUM(CASE b.fname WHEN '语文' THEN c.Score END)
case
when
then
------解决方案--------------------
当B表fanme是语文的时候 取C表里面的score值
------解决方案--------------------
- SQL code
case 字段 when '语文' then c.Score END--当 字段 = '语文' 时,值为 c.Score
case 字段 when '语文' then c.Score END--当 字段 = '语文' 时,值为 c.Score