本文介紹了如何在 Oracle PLSQL 中透視表?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
限時送ChatGPT賬號..
我有一個表格如下:
KEY 1995 1996 1997 1998 1999 2000 2001 2002 2003
123 0 0 0 461 1188 2049 1056 377 295
我希望數據如下所示.
KEY SEQ_NBR SEQ_YR VALUE_SUM
123 1 1995 0
123 2 1996 0
123 3 1997 0
123 4 1998 461
123 5 1999 1188
123 6 2000 2049
123 7 2001 1056
123 8 2002 377
123 9 2003 295
我使用的是 Oracle 12c.我嘗試使用 Pivot 子句,但無法創建查詢.
I am using Oracle 12c. I tried using Pivot clause but couldn't create the query.
有人可以幫我嗎?
推薦答案
為了好玩:我用 PL/SQL 循環和動態 SQL 填充舊表中的新表.這不是我們經常做的事情,但為什么不為一次性任務做呢?
For the fun of it: I am filling the new table from the old one with a PL/SQL loop and dynamic SQL. This is nothing we would regularly do, but why not do it for a one-time task?
begin
for col in
(
select column_name
from user_tab_cols
where table_name = 'OLDTABLE' and regexp_like(column_name, '^[[:digit:]]{4}$')
) loop
execute immediate
'insert into newtable (key, year, value)
select key, ' || col.column_name || ', "' || col.column_name || '" from oldtable';
end loop;
commit;
end;
這篇關于如何在 Oracle PLSQL 中透視表?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!