我之前处理这个问题的方法是计算出我将连续拥有的最大项目数,并在我的数据表上创建那么多自联接。以您的样本数据为例,假设您对任何 ProductID 最多有 6 个客户代码。
现在这个 sql 有点难看,但是为了模拟 CROSS APPLY,我们可以做一系列自连接和嵌套查询来创建一串客户代码。通过定位具有最大长度的字符串,您只保留您感兴趣的记录。
SELECT Nest4.ProductID,String
FROM (
SELECT ProductID,MaxStringLength
FROM (
SELECT ProductID,max(stringlength) MaxStringLength
FROM (
SELECT ProductID,String,len(String) StringLength
FROM (
SELECT
ProductID
,case when t0.CustomerCode is not null then t0.CustomerCode else '' end
+','+case when t1.CustomerCode is not null then t1.CustomerCode else '' end
+','+case when t2.CustomerCode is not null then t2.CustomerCode else '' end
+','+case when t3.CustomerCode is not null then t3.CustomerCode else '' end
+','+case when t4.CustomerCode is not null then t4.CustomerCode else '' end
+','+case when t5.CustomerCode is not null then t5.CustomerCode else '' end
"String"
FROM MyTable t0
LEFT JOIN MyTable t1 on t0.ProductID=t1.ProductID and t0.CustomerCode<t1.CustomerCode
LEFT JOIN MyTable t2 on t0.ProductID=t2.ProductID and t1.CustomerCode<t2.CustomerCode
LEFT JOIN MyTable t3 on t0.ProductID=t3.ProductID and t2.CustomerCode<t3.CustomerCode
LEFT JOIN MyTable t4 on t0.ProductID=t4.ProductID and t3.CustomerCode<t4.CustomerCode
LEFT JOIN MyTable t5 on t0.ProductID=t5.ProductID and t4.CustomerCode<t5.CustomerCode
) AS Nest1
) AS Nest2 GROUP BY ProductID
) Nest3
) Nest4
JOIN (
SELECT ProductID,String,len(String) StringLength
FROM (
SELECT
t0.ProductID ProductID
,case when t0.CustomerCode is not null then t0.CustomerCode else '' end
+','+case when t1.CustomerCode is not null then t1.CustomerCode else '' end
+','+case when t2.CustomerCode is not null then t2.CustomerCode else '' end
+','+case when t3.CustomerCode is not null then t3.CustomerCode else '' end
+','+case when t4.CustomerCode is not null then t4.CustomerCode else '' end
+','+case when t5.CustomerCode is not null then t5.CustomerCode else '' end
"String"
FROM MyTable s
LEFT JOIN MyTable t1 on t0.ProductID=t1.ProductID and t0.CustomerCode<t1.CustomerCode
LEFT JOIN MyTable t2 on t0.ProductID=t2.ProductID and t1.CustomerCode<t2.CustomerCode
LEFT JOIN MyTable t3 on t0.ProductID=t3.ProductID and t2.CustomerCode<t3.CustomerCode
LEFT JOIN MyTable t4 on t0.ProductID=t4.ProductID and t3.CustomerCode<t4.CustomerCode
LEFT JOIN MyTable t5 on t0.ProductID=t5.ProductID and t4.CustomerCode<t5.CustomerCode
) AS Nest1
) V2
ON Nest4.ProductID=V2.ProductID and Nest4.MaxStringLength=V2.StringLength