我在SQL Server 2008中为字符串列创建了一个聚合函数。
C#代码如下所示:
using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.IO;
using Microsoft.SqlServer.Server;
[Serializable]
[SqlUserDefinedAggregate(Format.UserDefined, MaxByteSize = 8000)]
public struct strconcat : IBinarySerialize
{
private List<String> values;
public void Init()
{
this.values = new List<String>();
}
public void Accumulate(SqlString value = new SqlString())
{
this.values.Add(value.Value);
}
public void Merge(strconcat value)
{
this.values.AddRange(value.values.ToArray());
}
public SqlString Terminate()
{
return new SqlString(string.Join(", ", this.values.ToArray()));
}
public void Read(BinaryReader r)
{
int itemCount = r.ReadInt32();
this.values = new List<String>(itemCount);
for (int i = 0; i <= itemCount - 1; i++)
{
this.values.Add(r.ReadString());
}
}
public void Write(BinaryWriter w)
{
w.Write(this.values.Count);
foreach (string s in this.values)
{
w.Write(s);
}
}
}
在SQL中查询:
DECLARE @listCol NVARCHAR(2000)
SELECT @listCol = STUFF(( SELECT '],[' + A.Name
FROM Attribute A,Category C
WHERE A.CategoryId = C.Id
ORDER BY A.DisplayOrder DESC
FOR XML PATH('')), 1, 2, '') + ']'
DECLARE @query NVARCHAR(2000)
SET @query =
N'SELECT * FROM (SELECT P.*,A.Name AttributeName,PA.OriginalValue FROM Product P,Product_Attribute PA, Attribute A WHERE P.Id = PA.ProductId AND A.Id = PA.AttributeId) src
PIVOT
(
dbo.strconcat(OriginalValue) FOR AttributeName
IN ('+@listCol+')) AS pvt'
EXECUTE (@query)
但是SQL Server会返回错误:
Msg 406,Level 16,State 1,Line 5
dbo.strconcat不能在PIVOT运算符中使用,因为它对NULL不是不变的。
我用谷歌搜索但不知道如何解决它。
请帮助我!
答案 0 :(得分:2)
如果您的汇总 对空值不变,则需要在SqlUserDefinedAggregateAttribute中将其标记为:
[SqlUserDefinedAggregate(Format.UserDefined, MaxByteSize = 8000,
IsInvariantToNulls = true)]
IsInvariantToNulls属性将要求描述为:
如果聚合对空值不变,则查询处理器使用此属性为true。也就是说,S的集合{NULL}与S的集合相同。例如,MIN和MAX等集合函数满足此属性,而COUNT(*)则不满足。
查看您的聚合,我认为您可能需要在Add
方法中执行一些工作 - 如果传入的值为null,可能不会将其添加到列表中?