I have a bit of problem regarding sql select statement. I have a column value that look like this
2>4>5 or
28>30>52 or
300>410>500 or
2>4>5>8
My question is, how can i get the value from RIGHT after the > character, so the select statement from the value above will return
4
30
410
5
Thanks in advance