Du kan hantera med ett vanligt tabelluttryck
WITH CTE AS (
SELECT OwnerNumber,ItemCode,ItemNumber,CountOfItems FROM table
UNION ALL SELECT OwnerNumber,ItemCode,ItemNumber,CountOfItems-1
FROM CTE
WHERE CountOfItems >= 2
)
SELECT OwnerNumber,ItemCode,ItemNumber
FROM CTE
ORDER BY ItemNumber
OPTION (MAXRECURSION 0);
Redigera:
Lade till MAXRECURSION
för att hantera situationer där CountOfItems överskrider standard max rekursioner som påpekats av Dev_etter