这是我在sql server 2016中的代码
insert into @entdef_queries(entitydefid,squery)
select A.entitydefid
,
(
select String_agg(cols,ioperator)
from
(
Select case when lower(b.metricdatatype) like 'string%' or lower(b.metricdatatype) like '%char%' or lower(b.metricdatatype) ='bit' or lower(b.metricdatatype) like 'date%' then
' lower("'+ b.metricname +'") ' + b.metriccondition +' '''+ b.value1 +''' '
when lower(b.metricdatatype) not like 'string%' and lower(b.metricdatatype) like '%char%' and lower(b.metricdatatype) !='bit' and lower(b.metricdatatype) not like 'date%' then
case when lower(b.metriccondition)='between' then ' "'+ b.metricname +'"' + b.metriccondition +' '+ b.value1 +' and ' + b.value2 + ' '
else ' "'+ b.metricname +'"' + b.metriccondition +' '+ b.value1 + ' ' end
end cols
, ( select distinct operators from @entdef_data C where A.entitydefid=C.entitydefid) ioperator
from
@entdef_data B
where A.entitydefid=b.entitydefid
)inp
)
from
@entdef_data A
group by A.entitydefid;
当我尝试执行以下代码时..它引发错误String_agg
不是内置函数。
答案 0 :(得分:0)
正如Gordon Linoff所述,此功能在SQL Server 2016中不可用。
将使用for xml
方法。
从SQL Server 2005开始,可以使用一种稍微faster的替代方案:SQLCLR GROUP_CONCAT
。
用法与本地STRING_AGG非常相似。但是由于这是自定义CLR聚合,因此会带来一些风险:启用CLR,可能的内存泄漏等。
文档: https://orlando-colamatteo.github.io/ms-sql-server-group-concat-sqlclr/