Afternoon All,
Trying to figure out how to pivot without an aggregate as there are alphanumeric values. Is there another term for this?
Heres the data that I have:
Id Name
1Bravo John
1Bravo Smith
2Charlie Dave
2Charlie Billy
What I wish to achieve:
Id Name Name
1Bravo John Smith
To display the results with Bravo in it
I haven't really gotten anywhere with pivot
Select ID, Name
From Table
Pivot (
Max(ID) For ID Like ('Bravo%')
Any help is appreciated
Thanks