I have a table with three column Id, Errorcode, ErrorDescription in which errorcode and errordescription columns have comma separated value in it
Here i need to concatenate the value of column 2 and 3, such as first value of column 2 - first value of column 3 and so on with comma(,) seprated
Example: Actual Table
| Id | Errorcode | ErrorDescription |
|---|---|---|
| 1 | 204,201,33 | Invalid Object,Out Of Range,Invalid Format |
| 2 | 21,44 | FileInvalid,Invalid date |
| 3 | 20 | Invalid parse |
Required Output:
| Id | Error |
|---|---|
| 1 | 204-Invalid Object, 201-Out Of Range, 33-Invalid Format |
| 2 | 21-FileInvalid, 44-Invalid date |
| 3 | 20-Invalid parse |