您好,登錄后才能下訂單哦!
Create table test (name char(10),km char(10),cj Number)
insert into test values('張三','語文',80)
insert into test values('張三','數(shù)學',86)
insert into test values('張三','英語',75)
insert into test values('李四','語文',78)
insert into test values('李四','數(shù)學',85)
insert into test values('李四','英語',78)
commit;
怎樣實現(xiàn)成這樣:
name 語文 數(shù)學 英語
李四 78 85 83
張三 80 86 75
select
name,
sum(decode(km,'語文',cj,0) 語文,
sum(decode(km,'數(shù)學',cj,0) 數(shù)學,
sum(decode(km,'英語',cj,0) 英語
from test group by nameTop
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。