select 姓名,max(case when 课程='语文' then 分数 end) as 语文,
max(case when 课程='数学' then 分数 end) as 数学,
max(case when 课程='物理' then 分数 end) as 物理
from (select * from tb) as D
group by 姓名
select * from tb
这句直接用tb代替不就行了吗
max(case when 课程='数学' then 分数 end) as 数学,
max(case when 课程='物理' then 分数 end) as 物理
from (select * from tb) as D
group by 姓名
select * from tb
这句直接用tb代替不就行了吗
寻找学习的动力,承接小型程序设计,呵呵,为了激励自己学习下。
虽然做不到无私,但会学着去帮助别人