I'm wondering how to solve this without using any functions. I've got some kind of embedded SQL Client (12c) in the application where I'm working on and therefore I cannot use functions & procedures outside of the query.
I'm having this input:
ID ¦ APP
14 ¦ AAA;BBBB;CC
15 ¦ AAA;DDDDD
16 ¦ BBBB;CC
17 ¦ AAA;BBBB;CC;DDDDD
I would like dynamically transform into this:
ID ¦ APP
14 ¦ AAA
14 ¦ BBBB
14 ¦ CC
15 ¦ AAA
15 ¦ DDDDD
16 ¦ BBBB
16 ¦ CC
17 ¦ AAA
17 ¦ BBBB
17 ¦ CC
17 ¦ DDDDD
Any help appreciated.