Hi, guys. Say I have the following table:
ID | String
---+---------
1 | <123><345>
2 | <1-2><45-67>
3 | <345-321><234>
This is a legacy data format in my app which is currently impossible to avoid. What I need to acheive, is:
ID | String
---+---------
1 | <123>
1 | <345>
2 | <1-2>
2 | <45-67>
3 | <345-321>
3 | <234>
Any suggestions about how to acheive this result using only plain Oracle SQL without creating any additional objects or pl-sql procedures?
Thanks.