Hello, Here's the input file
| col1 | col2 |
| abc | cat |
| abc | bat |
| abc | chat |
| hjd | pat |
| hjd | rat |
| hjd | code |
| mno | stole |
| mno | 123 |
| mno | roll |
The output I am expecting as
| col1 | col2 |
| abc | cat bat chat |
| hjd | pat rat code |
| mno | stole 123 roll |
With my approach, I am getting the output separated by commas but not in next line as shown.
I would appreciate the help