码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server中使用PIVOT行转列

时间:2016-12-02 07:42:02      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:rom   subject   splay   log   color   art   char   arc   pivot   

1.建表及插入数据

技术分享
 1 USE [AdventureDB]
 2 GO
 3 /****** Object:  Table [dbo].[Score]    Script Date: 11/25/2016 4:30:50 PM ******/
 4 SET ANSI_NULLS ON
 5 GO
 6 
 7 SET QUOTED_IDENTIFIER ON
 8 GO
 9 
10 CREATE TABLE [dbo].[Score]([Name] [varchar](50) NULL,[Subject] [varchar](50) NULL,[Score] FLOAT NULL) ON [PRIMARY]
11 GO
12 
13 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJack, Nlinguistic, 65)
14 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NTom, Nlinguistic, 56)
15 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NLina, Nlinguistic, 84)
16 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJack, NMathematics, 100)
17 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NTom, NMathematics, 82)
18 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NLina, NMathematics, 67)
19 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJack, NEnglish, 82)
20 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NTom, NEnglish, 54)
21 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NLina, NEnglish, 76)
22 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJames, NOther, 52)
23 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NTom, NOther, 99)
24 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NLina, NOther, 79)
25 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKobe, Nlinguistic, 65)
26 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJames, Nlinguistic, 76)
27 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKidd, Nlinguistic, 86)
28 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJames, NMathematics, 70)
29 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKobe, NMathematics, 92)
30 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKidd, NMathematics, 70)
31 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKobe, NEnglish, 86)
32 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKidd, NEnglish, 85)
33 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJames, NEnglish, 66)
34 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NJack, NOther, 77)
35 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKobe, NOther, 97)
36 INSERT INTO [dbo].[Score] ([Name], [Subject], [Score]) VALUES (NKidd, NOther, 93)
View Code

技术分享

2.使用CASE语句查询

技术分享
 1 USE [AdventureDB]
 2 GO
 3 
 4 /****** Object:  StoredProcedure [dbo].[CaseSelect]    Script Date: 12/02/2016 00:47:02 ******/
 5 SET ANSI_NULLS ON
 6 GO
 7 
 8 SET QUOTED_IDENTIFIER ON
 9 GO
10 
11 CREATE procedure [dbo].[CaseSelect] AS
12 
13 BEGIN
14 
15    SELECT [Name],
16         SUM (case when [Subject] = English then [Score] else 0 end) English,
17         SUM (case when [Subject] = linguistic then [Score] else 0 end) Linguistic,
18         SUM (case when [Subject] = Mathematics then [Score] else 0 end) Mathematics,
19         SUM (case when [Subject] = Other then [Score] else 0 end) Other,
20         AVG ([Score]) Average
21     FROM [dbo].[score] GROUP BY [Name] ORDER BY [Name] DESC
22     
23 END
24 
25 GO
View Code

技术分享

3.使用PIVOT行转列

技术分享
 1 USE [AdventureDB]
 2 GO
 3 
 4 /****** Object:  StoredProcedure [dbo].[Pivot]    Script Date: 12/02/2016 01:07:27 ******/
 5 SET ANSI_NULLS ON
 6 GO
 7 
 8 SET QUOTED_IDENTIFIER ON
 9 GO
10 
11 CREATE procedure [dbo].[Pivot]
12     @NumberOfStudents int = 5
13 AS
14 
15 IF @NumberOfStudents < 1 or @NumberOfStudents > 10
16     RAISERROR(@NumberOfStudents must be between 1 and 10, 11, 1);
17 ELSE
18     SELECT top(@NumberOfStudents)
19         p.[name],
20         p.English,
21         p.linguistic,
22         p.Mathematics,
23         p.Other,
24         (p.English + p.linguistic+p.Mathematics + p.Other)/4 AS Average
25     FROM [dbo].[score] PIVOT (SUM (score) FOR [subject] IN (English,linguistic,Mathematics,Other) ) AS P
26     ORDER BY  p.[name] DESC
27     
28 RETURN;
29 
30 GO
View Code

4.PIVOT动态获取列

技术分享
 1 USE [AdventureDB]
 2 GO
 3 
 4 /****** Object:  StoredProcedure [dbo].[Pivot_DynamicColumn]    Script Date: 12/02/2016 01:31:30 ******/
 5 SET ANSI_NULLS ON
 6 GO
 7 
 8 SET QUOTED_IDENTIFIER ON
 9 GO
10 
11 CREATE procedure [dbo].[Pivot_DynamicColumn] AS
12 
13 BEGIN
14     DECLARE @ColumnNames NVARCHAR(Max)
15     DECLARE @AverageScore NVARCHAR(Max)
16     DECLARE @ColumnCount int
17  
18     SET @ColumnNames=‘‘
19     SET @AverageScore = ‘‘
20     SET @ColumnCount = ‘‘
21     
22     SELECT @ColumnCount = COUNT(DISTINCT [Subject]) FROM [Score]
23  
24     SELECT
25        @ColumnNames = @ColumnNames + [ + [Subject] + ],,
26        @AverageScore = @AverageScore + [ + [Subject] + ]+
27     FROM
28        (
29        SELECT DISTINCT [Subject] FROM [Score]
30        ) t
31  
32     SET @ColumnNames= LEFT(@ColumnNames, LEN(@ColumnNames)-1)
33     SET @AverageScore= LEFT(@AverageScore, LEN(@AverageScore)-1)
34  
35     DECLARE @selectSQL  NVARCHAR(Max)
36  
37     SET @selectSQL=
38     SELECT [name],{0},({1})/{2} as Average FROM
39        [dbo].[score]
40      Pivot(SUM(score) For [subject] in ({0})) AS p
41        ORDER BY  p.[name] DESC
42  
43     SET @selectSQL= REPLACE(@selectSQL,{0},@ColumnNames)
44     SET @selectSQL= REPLACE(@selectSQL,{1},@AverageScore)
45     SET @selectSQL= REPLACE(@selectSQL,{2},@ColumnCount)
46  
47     EXEC sp_executesql @selectSQL
48 END
49 
50 GO
View Code

5.使用UNPIVOT列转行(待续)

 

SQL Server中使用PIVOT行转列

标签:rom   subject   splay   log   color   art   char   arc   pivot   

原文地址:http://www.cnblogs.com/makesense/p/6124282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!