gpt4 book ai didi

mysql - 向汇总添加枢轴

转载 作者:行者123 更新时间:2023-11-29 11:00:26 24 4
gpt4 key购买 nike

我有以下查询,它提供了我想要转换的聚合数据:

select provider, title, hd_or_sd, SUM(customer_price), count(distinct title) 
from `100` group by provider, title, hd_or_sd with rollup

enter image description here

我想以 sd_or_hd 列为中心,以便我的结果如下所示:

                                      hd              sd          total   
provider title rev. count rev. count rev. count
DISTRIBBER 16.99 1 16.99 1
DISTRIBBER finding Joe 16.99 1 16.99 1

我该如何进行这个查询?另外,我注意到 Rollup 并不完美 - 例如,对于 Electric 娱乐,它显示 5 个标题,但 hd_or_sd 值“HD”,即使其中几个标题是 SD。为什么会出现这种情况?

以下是数据示例:http://sqlfiddle.com/#!9/a9b5d9/1 。最终结果应该是这样的(减去奇怪的数字格式)—— enter image description here

请注意,我还希望在不使用 CASE 语句的情况下完成此操作,因为透视列可能具有许多不同的值。

最佳答案

您需要将 SUM 与 CASE 运算符一起使用,如下所示:

select provider, title, 
sum(case when hd_or_sd = 'HD' then 1 else 0 end) as HD,
sum(case when hd_or_sd = 'SD' then 1 else 0 end) as SD,
sum(case when hd_or_sd = 'HD' then customer_price else 0 end) as HD_price,
sum(case when hd_or_sd = 'SD' then customer_price else 0 end) as SD_price,
sum(customer_price) revenue from `100`
group by provider, title
with rollup

结果:

|               provider |                      title | HD | SD | HD_price | SD_price | revenue |
|------------------------|----------------------------|----|----|----------|----------|---------|
| DISTRIBBER | Finding Joe | 0 | 1 | 0 | 16.99 | 16.99 |
| DISTRIBBER | (null) | 0 | 1 | 0 | 16.99 | 16.99 |
| Echo Bridge | Do Something | 0 | 1 | 0 | 1.99 | 1.99 |
| Echo Bridge | Down in LA | 2 | 2 | 0 | 0 | 0 |
| Echo Bridge | The L.A. Complex, Season 1 | 0 | 1 | 0 | 19.99 | 19.99 |
| Echo Bridge | The Other Side of the Door | 1 | 2 | 2.99 | 3.98 | 6.97 |
| Echo Bridge | Who You Know | 0 | 2 | 0 | 3.98 | 3.98 |
| Echo Bridge | (null) | 3 | 8 | 2.99 | 29.94 | 32.93 |
| Electric Entertainment | Leverage, Season 4 | 0 | 1 | 0 | 31.99 | 31.99 |
| Electric Entertainment | The Cross My Heart Job | 1 | 0 | 2.99 | 0 | 2.99 |
| Electric Entertainment | The Inside Job | 0 | 1 | 0 | 1.99 | 1.99 |
| Electric Entertainment | The Radio Job | 0 | 1 | 0 | 1.99 | 1.99 |
| Electric Entertainment | The Scheherazade Job | 1 | 0 | 2.99 | 0 | 2.99 |
| Electric Entertainment | (null) | 2 | 3 | 5.98 | 35.97 | 41.95 |
| HALLMARK | The Good Witch's Gift | 0 | 1 | 0 | 3.99 | 3.99 |
| HALLMARK | (null) | 0 | 1 | 0 | 3.99 | 3.99 |
| Quebec Inc. | 2 Frogs In the West | 1 | 0 | 5.99 | 0 | 5.99 |
| Quebec Inc. | (null) | 1 | 0 | 5.99 | 0 | 5.99 |
| VIRGIL | One Lucky Elephant | 0 | 1 | 0 | 3.99 | 3.99 |
| VIRGIL | (null) | 0 | 1 | 0 | 3.99 | 3.99 |
| (null) | (null) | 6 | 14 | 14.96 | 90.88 | 105.84 |

SQL Fiddle

或者,您可以简单地通过 hd_or_sd 进行 ROLLUP 并在应用程序中完成 PIVOT,如下所示:

select provider, title, hd_or_sd,
sum(customer_price) revenue from `100`
group by provider, hd_or_sd, title
with rollup

关于mysql - 向汇总添加枢轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42381948/

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