Alright guys I need some help! I am need to duplicate the ID
Column and I'm having trouble with adding a column without loosing important data.
Is there a way to make an "overflow column"
that would take the secondary [tags]
and put them into a new column?
Here is the example:
**UniqueId** **Age** **Zip*** **Tag**
1 20 11111 yellow
2 25 33333 blue
2 25 33333 black
3 30 44444 purple
3 30 44444 pink
3 30 44444 white
This is what i want the output to look like
**UniqueId** **Age** **Zip*** **Tag1** **Tag2** **Tag3**
1 20 11111 yellow NULL NULL
2 25 33333 blue black NULL
3 30 44444 purple pink white
Your help would be greatly appreciated!!!