Using SQL ORACLE:
I need to break a series of strings into separate pieces and each subsequent piece needs to fall below the one before it, i.e. Listed vertically, one piece per row. I want to separate the strings at the '^' symbol.
For example, The string is 'RT12^RT45^LT44^TR55'
The result needs to be:
RT12
RT45
LT44
TR55