我有一个这样的SQL表:
Animal1 Animal2 Corelation
---------+---------------+--------------
Cat Cat 1
Cat Dog 0.6
Cat Mouse 0.8
Dog Cat 0.6
Dog Dog 1
Dog Mouse 0.4
Mouse Cat 0.8
Mouse Dog 0.4
Mouse Mouse 1
我正在寻找一个SQL查询来返回以下结果:
Animal 1 Cat Dog Mouse
---------+---------------+------------------+---------------+
Cat 1 0.6 0.8
Dog 6 1 0.4
Mouse 0.8 0.4 1
基本上我想要更可读的表格版本。
我试图像这样使用枢轴:
use SymbolsDB
select * from [AnimalsTable]
pivot (
[Corelation]
for [Animal2] in (select * from [Animal2]
)
但它不起作用。我不确定我是否理解枢轴是如何工作的,以及它是否可以在我的情况下使用。或者还有另一种方法吗? (我试图避免循环,因为我有100万条记录)
由于
答案 0 :(得分:2)
您不能在SELECT
内放置PIVOT
语句来返回值列表,然后必须保持不变。如果您正在寻找动态PIVOT
,那么您将需要使用以下内容:
DECLARE @cols AS NVARCHAR(MAX),
@query AS NVARCHAR(MAX)
select @cols = STUFF((SELECT distinct ',' + QUOTENAME(Animal2)
from animals
FOR XML PATH(''), TYPE
).value('.', 'NVARCHAR(MAX)')
,1,1,'')
set @query = 'SELECT Animal1, ' + @cols + ' from
(
select animal1, animal2, Corelation
from animals
) x
pivot
(
min(Corelation)
for animal2 in (' + @cols + ')
) p '
execute(@query)
答案 1 :(得分:0)
在数据透视中,列名称必须为常量。
为此,您需要使用动态SQL。
declare @options varchar(max) = ''
select @options = @options + ', [' + animal2 + ']' from (select distinct animal2 from animals) v
select @options = substring(@options ,2, LEN(@options))
declare @sql nvarchar(4000) =
'select * from [AnimalsTable] pivot (max([Corelation])
for [Animal2] in (' + @options + ')) p'
exec sp_executesql @sql