程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> oracle 逗號分割,列轉行,行轉列,oracle逗號

oracle 逗號分割,列轉行,行轉列,oracle逗號

編輯:Oracle教程

oracle 逗號分割,列轉行,行轉列,oracle逗號


SQL代碼 列轉行

select
REGEXP_SUBSTR(a.rolecode ,'[^,]+',1,l)
rolecode
from (
select 'a,aa,aaa' rolecode from dual
) a,
(SELECT LEVEL l FROM DUAL CONNECT BY LEVEL<=100) b
WHERE l <=LENGTH(a.rolecode) - LENGTH(REPLACE(rolecode,','))+1  

 

或者

with a as (select 'ABC,AA,AD,ABD,JI,CC,ALSKD,ALDKDJ' id from dual)
select regexp_substr(id,'[^,]+',1,rownum) id from a
connect by rownum <= length(regexp_replace(id,'[^,]+'))

 

SQL代碼 行轉列

 

select name,coures,to_char(wmsys.wm_concat(xxx.score)) c 
 from 
 
 
  (select '小明' name,'語文' coures,90 score  from dual
 union all
 select '小明' name,'語文' coures,91 score  from dual
  union all
 select '小明' name,'數學' coures,90 score  from dual
 union  all
 select '小明' name,'數學' coures,91 score  from dual) xxx
 
  group by xxx.name,coures

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved