Consider the below input table
Id CountryName
1 India,Australia,Singapore,Pakistan,Bangaladesh
2 Norway,Argentina,Brazil,WestIndies,Burma
Desired output being
Id Country1 Country2 Country3 Country4 Country5
1 India Australia Singapore Pakistan Bangalades
2 Norway Argentina Brazil WestIndies Burma
I have writen the query as under which works fine
;WITH cte AS (
SELECT
Id,
CAST('<i>' + REPLACE(CountryName, ',', '</i><i>') + '</i>' AS XML) AS names
FROM @t
)
SELECT * FROM
(
SELECT
Id,
x.i.value('.', 'VARCHAR(10)') AS Country,
'Country' + CAST(s.Number AS VARCHAR) AS CountryType
FROM cte
CROSS APPLY master..spt_values s
CROSS APPLY names.nodes('//i[position()=sql:column("s.number")]') x(i)
WHERE s.type='p'
) a
PIVOT (
MAX(Country) FOR CountryType IN (Country1, Country2, Country3, Country4,Country5)
) pvt
But performancewise it is very bad... I am looking for a better query that can speed up the process (that may not be xquery approach of mine but other approach using cTE only and no RBar/procedural/while loop/cursor approach)
Even I am fine with if my query can be improved.
N.B.~ I cannot add any indexing on the table..please consider this point as a limitation to the enviromnent. Whatever I have to do is with the query only.
N.B.~ There can be more countries and not confined to 5
Please help....
Thanks in advance