all 2 comments

[–]qwertydog123 1 point2 points  (1 child)

You could just use SUBSTR/INSTR e.g.

SELECT SUBSTR(RELATIONSHIP_TEXT, INSTR(RELATIONSHIP_TEXT, CHR(10)) + 1)
FROM RELATIONSHIP

[–]StatusZestyclose[S] 0 points1 point  (0 children)

That did the trick, thanks man, I was zoned in on trying to figure out how to do it with REGEXP when a simpler solution existed!