在 Sql Server 中如何透视多个列

In Sql Server how to Pivot for multiple columns(在 Sql Server 中如何透视多个列)
本文介绍了在 Sql Server 中如何透视多个列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的示例表,我想旋转类别列并将销售、库存和目标作为行来获取

This is my sample Table, i want to pivot the category column and get the sales,stock and target as rows

我想要这种形式的示例输出,如下所示,其中类别代替列,列代替行

I want the sample output in this form as shown in the below wherein the categories are in place of columns and columns in place of row

推荐答案

您必须更改下一个 Pivot 语句的列名.

You gotta change the name of columns for next Pivot Statement.

喜欢

SELECT
*
FROM
(
  SELECT 
   Branch,
   Category,
   Category+'1' As Category1,
   Category+'2' As Category2,
   Sales, 
   Stock, 
   Target
  FROM TblPivot
 ) AS P

 -- For Sales
 PIVOT
 (
   SUM(Sales) FOR Category IN ([Panel], [AC], [Ref])
 ) AS pv1

 -- For Stock
 PIVOT
 (
   SUM(Stock) FOR Category1 IN ([Panel1], [AC1], [Ref1])
 ) AS pv2

 -- For Target
 PIVOT
 (
   SUM(Target) FOR Category2 IN ([Panel2], [AC2], [Ref2])
 ) AS pv3
 GO

<小时>

你现在准备好了....


You are ready to go now....

您可以使用 pv3 的聚合按您需要的列进行汇总和分组.

You can use aggregate of pv3 to sum and group by the column you need.

这篇关于在 Sql Server 中如何透视多个列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)