I am trying to parse one varchar into three different columns. The values in question are separated by ##. Each variable also has a tag. So example of a string would be
12345##AA_09876##BB_123456##CC_34567
I want something like the following returned:
-------------------------------------------
** Front_tag | AA | BB | CC **
** 12345 | 09876 | 123456 | 34567 **
-------------------------------------------
Unfortunately, it has to be in PL/SQL.
Thanks for your help!