I have a set of data below:
Example:
R Item Num C Item Num
123 569
134 569
145 569
145 456
136 456
234 456
My goal is to concatenate the data so that it looks like (below) in their respective column:
C Item Num R Item Num
569 123 | 134 | 145
456 145 | 136 | 234
What's the best way to write this query?
Thanks!
Example:
R Item Num C Item Num
123 569
134 569
145 569
145 456
136 456
234 456
My goal is to concatenate the data so that it looks like (below) in their respective column:
C Item Num R Item Num
569 123 | 134 | 145
456 145 | 136 | 234
What's the best way to write this query?
Thanks!