[X]
[ID] [int] NOT NULL,
[Type] [nvarchar]
[Plannned] [nvarchar]
[Y]
[ID] [int] NOT NULL,
[Type] [nvarchar](5)
[Description] [nvarchar]
Contents in Y are as
ID Type Description
1 H For 1
1 H For 2
1 H For 3
1 HFor 4
Now, I want the contens in y to be updated in X as
ID Type Planned
1 H For 1, For 2, For 3, For 4
Deos anyone know how i could accomplish this
I can create a new column in Y with combined results of same ID and then update X but i donot know if there is another way of doing this
Thanks