我正在使用SQL Server 2008 R2,我有这个简单的表
我尝试做的是从此表中进行选择并获得以下结果
x | 1 | 2 | 3
--+------------+-------------+------------
1 | first 1 | first 2 | first 3
2 | Second 1 | second 2 | second 3
我认为可以使用PIVOT
我对PIVOT
以及使用PIVOT Count()
找到的所有搜索结果了解不多。 SUM()
,AVG()
,因为我在PIVOT
列上varchar
试图{/ 1}},因此无法在我的表格中使用
问题我使用的是正确的功能吗?或者还有什么我需要知道解决这个问题?任何帮助将不胜感激
我试过这个没有运气
PIVOT(count(x) FOR value IN ([1],[2],[3]) )as total
PIVOT(count(y) FOR value IN ([1],[2],[3]) )as total // This one is the nearest
of what i wand but instead of the column value values i get 0
以下是查询是否有人进行测试
CREATE TABLE #test (x int , y int , value Varchar(50))
INSERT INTO #test VALUES(1,51,'first 1')
INSERT INTO #test VALUES(1,52,'first 2')
INSERT INTO #test VALUES(1,53,'first 3')
INSERT INTO #test VALUES(2,51,'Second 1')
INSERT INTO #test VALUES(2,52,'Second 2')
INSERT INTO #test VALUES(2,53,'Second 3')
SELECT * FROM #test
PIVOT(count(y) FOR value IN ([1],[2],[3]) )as total
DROP TABLE #test
答案 0 :(得分:8)
使用PIVOT函数时,IN子句中的值需要与您选择的值匹配。您当前的数据不包括1,2或3.您可以使用row_number()
为每个x
分配一个值:
select x, [1], [2], [3]
from
(
select x, value,
row_number() over(partition by x order by y) rn
from test
) d
pivot
(
max(value)
for rn in ([1], [2], [3])
) piv;
见SQL Fiddle with Demo。如果您的每个x
的值都是未知数,那么您将需要使用动态SQL:
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX)
select @cols = STUFF((SELECT distinct ',' + QUOTENAME(row_number() over(partition by x order by y))
from test
FOR XML PATH(''), TYPE
).value('.', 'NVARCHAR(MAX)')
,1,1,'')
set @query = 'SELECT x,' + @cols + '
from
(
select x, value,
row_number() over(partition by x order by y) rn
from test
) x
pivot
(
max(value)
for rn in (' + @cols + ')
) p '
execute(@query);
答案 1 :(得分:2)
关键是对文本字段使用Max函数。
查询:
SELECT X, [51] [1], [52] [2], [53] [3]
FROM (select * from test) t
PIVOT(max(Value) FOR Y IN ([51], [52], [53]) )as total
答案 2 :(得分:1)
你说value IN ([1],[2],[3])
。这意味着“如果值恰好等于1,2或3则匹配”。但在你的表中它永远不会。有些东西不对。
答案 3 :(得分:1)
SELECT *
FROM #test
PIVOT(MAX(value) FOR y IN ([51],[52],[53]) )as total
答案 4 :(得分:1)
我给你一个技巧,但它没有意义。
SELECT * FROM
(SELECT x, y-50 as y, value FROM test) src
PIVOT(max(value) FOR y IN ([1],[2],[3]) )as total