Hi
Can anyone show me how to do the following:
I have this snippet of data
ids
-----------------------------------
1582270|1582277
1582270|1582277|1582286
1582270
I want to return the id (the id may not always have the same number of numbers) after the last pipe (|) delimter or just the number if it has no pipes
So i want a rs like this :
ids
-----------------------------------
1582277
1582286
1582270
Thanks in advance