Hi,
I want to create a flat table as shown in the desired results using the temp table.
CREATE TABLE #MyTestTable
(
Title NVARCHAR(200),
ID NVARCHAR(100),
ChildID NVARCHAR(650)
)
INSERT INTO #MyTestTable ( Title,ID,ChildID)
SELE
↧