1.在oracle中,group by後將字元拼接。任務:在學生表中,有studentid和subject兩個欄位。要求對studentid進行group by分組,並將所選科目拼接在一起。oracle中sql語句如下。 第一幅圖是未分組的數據顯示,第二幅圖是分組後的字元串連接之後的顯示。 左為圖一 ...
1.在oracle中,group by後將字元拼接。任務:在學生表中,有studentid和subject兩個欄位。要求對studentid進行group by分組,並將所選科目拼接在一起。oracle中sql語句如下。
select studentid, listagg(subject, ',') within group(order by subject) from student group by studentid;
第一幅圖是未分組的數據顯示,第二幅圖是分組後的字元串連接之後的顯示。
左為圖一,右為圖二。
2.任務:給查詢的語句自定義排序,規定studentid為3的派第一位,為4的派第二位,剩下的按照studentid排序。
sql如下: select * from student order by decode(studentid,3,0,4,1),studentid;
效果如下。