列轉行1 0版本

2021-09-25 04:47:03 字數 1174 閱讀 1375

1.有score列表如下:(列轉行)

);插入資料:

insert into score values(『張三』,『語文』,80);

insert into score values(『張三』,『數學』,90);

insert into score values(『張三』,『英語』,85);

insert into score values(『李四』,『語文』,70);

insert into score values(『李四』,『數學』,80);

insert into score values(『李四』,『英語』,89);

commit;

–將列轉為行

select name,

max(case course when 『語文』 then scrore end) as 「語文」,

max(case course when 『數學』 then scrore end) as 「數學」,

max(case course when 『英語』 then scrore end) as 「英語」

from score

group by name;

sum min 都可以

或者:select name,

max(case when (course=『語文』) then scrore end) as 「語文」,

max(case when (course=『數學』) then scrore end) as 「數學」,

max(case when (course=『英語』) then scrore end) as 「英語」

from score

group by name;

從score中挑選資料,按姓名分組,用 case ,when 選擇相符合的科目的分數輸出。

結果:

低於1 0版本 pod使用

comments cocoapods將rails的gem思想成功的遷移到了osx中,讓ios和macos也能快速的管理第三方依賴。然而,用久了發現乙個很尷尬的問題 cocoapods還不是很完善,因此更新頻率很大,雖然我經常更新,但是他對舊版本的cocoapods相容性並不好。例如,我有乙個專案是用...

Windows 10 版本資訊

針對 windows 10 的功能更新每年將通過半年頻道 sac 發布兩次,時間約為每年的 3 月和 9 月。自功能更新發布之日起 18 個月或 30 個月內,我們還將隨之推出月度質量更新,具體取決於生命週期策略。我們建議你立即開始將各個半年頻道版本定向部署到已選擇進行早期採用的裝置上,並自行決定公...

Oracle有1 0版本嗎?

答案是 沒有。oracle公司前身,rsi relational software,inc.rsi 在1979年的夏季發布了可用於dec公司的pdp 11計算機上的商用 oracle產品,這個資料庫產品整合了比較完整的sql實現,其中包括子查詢 連線及其他特性。但不得不說,軟體不是很穩定,並缺少事務...