I have a string like this
0011.06.123.7-0
SELECT STRING_SPLIT(NUMBER,'.')
returns
| Values |
|---|
| 0011 |
| 06 |
| 123 |
And now I only and always need the third value, in this case '123' How do I select this proberly?
I already tried to get the third value with the Rownumber, but that didn't worked out.