gpt4 book ai didi

sql - Oracle 的棘手 View

转载 作者:行者123 更新时间:2023-12-04 16:56:15 24 4
gpt4 key购买 nike

我有一个带有列的表“价格”:

year, janprc, janqty, febprc, febqty ...

(一年中所有月份的价格和数量)

我需要的是用列创建一个 View “monthlyprices”:
year, month, price, quantity 

使用上表中的数据。
我怎么能那样做?

谢谢!

最佳答案

以下是如何使用一个 UNPIVOT 语句而不使用 UNION 来完成此操作。

with t as (
select 2008 year, 1 janprc, 500 janqty, 1 febprc, 600 febqty from dual
union
select 2009, 50, 1000, 20, 3000 from dual
union
select 2010, 60, 1000, 25, 3000 from dual
)
SELECT *
FROM t
UNPIVOT (
(price, quantity) FOR month IN
(
(janprc, janqty) AS 'jan',
(febprc, febqty) AS 'feb'
)
)
order by
year, month
;

alt text

关于sql - Oracle 的棘手 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4164416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com