SQL 透视列值
Posted
技术标签:
【中文标题】SQL 透视列值【英文标题】:SQL Pivot column values 【发布时间】:2019-10-16 04:47:08 【问题描述】:我已尝试关注this 和this(SQL Server 特定解决方案),但没有帮助。
我有两个表,Product 和 Sale,我想知道每天售出多少产品。但我想旋转表格,使列成为产品名称,每一行将包含按天订购的每天销售的产品数量。
简化架构如下
CREATE TABLE product (
id integer,
name varchar(40),
price float(2)
);
CREATE TABLE sale(
id integer,
product_id integer,
transaction_time timestamp
);
这就是我想要的
我只能汇总每种产品每天的总销售额,但无法调整产品名称。
select date(sale.transaction_date)
, product.id
, product.name
, count(product_id)
from sale inner join
product on sale.product_id = product.id
group by date(sale.transaction_date)
, product.id
, product.name
这是目前的情况
请提出建议。
【问题讨论】:
【参考方案1】:您需要旋转逻辑,例如
select
s.transaction_date::date,
count(case when p.name = 'intelligent_rubber_clock' then 1 end) as intelligent_rubber_clock,
count(case when p.name = 'intelligent_iron_wallet' then 1 end) as intelligent_iron_wallet,
count(case when p.name = 'practical_marble_car' then 1 end) as practical_marble_car
from sale s
inner join product p
on s.product_id = p.id
group by
s.transaction_date::date;
由于您的预期输出仅按日期汇总,因此您的 GROUP BY
子句中应仅包含交易日期。这里使用的技巧是计算 CASE
表达式的计数,当记录来自给定产品时,该表达式返回 1,否则返回 0。这会为每个产品生成条件计数,所有产品都在单独的列中。要添加更多列,只需添加更多条件计数。
【讨论】:
感谢您的及时回复,但产品名称非常多,所以最终它会变成一张非常宽的桌子。为每个产品添加条件语句似乎相当困难。 然后考虑在 Postgres 中使用交叉表。交叉表的工作我做的不多,所以不能给你一个肯定的答案。 @阿里。 . .使用电子表格或对 information_schema 表的查询生成代码。以上是关于SQL 透视列值的主要内容,如果未能解决你的问题,请参考以下文章