gpt4 book ai didi

postgresql - 使用 PostgreSQL 9.3 的动态数据透视查询

转载 作者:行者123 更新时间:2023-11-29 11:28:06 27 4
gpt4 key购买 nike

我有一个名为 Product 的表:

create table product (
ProductNumber varchar(10),
ProductName varchar(10),
SalesQuantity int,
Salescountry varchar(10)
);

示例值:

insert into product values
('P1', 'PenDrive', 50, 'US')
, ('P2', 'Mouse', 100, 'UK')
, ('P3', 'KeyBoard', 250, 'US')
, ('P1', 'PenDrive', 300, 'US')
, ('P2', 'Mouse', 450, 'UK')
, ('P5', 'Dvd', 50, 'UAE');

我想动态生成 Salescountry's 名称并显示该国家/地区的 SalesQuantity 销售额的总和。

预期结果:

ProductName US    UK    UAE
----------------------------
PenDrive 350 0 0
Mouse 0 550 0
KeyBoard 250 0 0
Dvd 0 0 50

我是用 SQL Server 2008 R2 做的:

DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX);

SET @cols = STUFF((SELECT distinct ',' + QUOTENAME(SalesCountry)
FROM Product
FOR XML PATH(''), TYPE
).value('.', 'NVARCHAR(MAX)')
,1,1,'')

set @query = 'SELECT ProductName, ' + @cols + ' from
(
select ProductName
, SalesQuantity as q
, Salescountry
from Product
) x
pivot
(
SUM(q)
for Salescountry in (' + @cols + ')
) p '

PRINT(@query);
execute(@query);

如何在 Postgres 中实现这一点?

最佳答案

SELECT *
FROM crosstab (
'SELECT ProductNumber, ProductName, Salescountry, SalesQuantity
FROM product
ORDER BY 1'
, $$SELECT unnest('{US,UK,UAE1}'::varchar[])$$
) AS ct (
"ProductNumber" varchar
, "ProductName" varchar
, "US" int
, "UK" int
, "UAE1" int);

详细解释:

完全动态查询不同数量的不同 Salescountry

关于postgresql - 使用 PostgreSQL 9.3 的动态数据透视查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28087948/

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