I have a csv in this format
ORDER_ID Item_DESC
121 Beer
121 Chips
121 Wine
141 Chips
141 Wine
I need to push this out in this format:
121 Beer,Chips,Wine
141 Chips,Wine
Can somebody point me to the right direction, I have been breaking my head for a week now.
I tried the following:
Excel Pandas-Pivot,stack,melt Recursive table in SQL
Any help is appreciated.