日期:2014-05-17 浏览次数:20861 次
select 列1,列2,
sum(case when 列3 not in ('同比','得分','上周期得分') then 列3 else null end)列3,
sum(case when 列3 = '得分' then 列4 else null end) 得分,
sum(case when 列3 = '上周期得分' then 列4 else null end) 上周期得分,
sum(case when 列3 = '同比' then 列4 else null end )同比
from cfg_qa_scene
with tt as
(select t.*,
case
when rownum <= 3 then
'MOS值'
else
'下载速率(KBps)'
end 列5
from cfg_qa_scene t
where t.列3 not in ('MOS值', '下载速率(KBps)'))
select 列1,
列2,
列5,
max(case
when 列3 = '得分' then
列4
else
null
end) 得分,
max(case