Good morning!
I need to return the value inside a string that is between a range of |
in the select below I can get the value from the first |
.
The expected result is: 83,1
SELECT SUBSTR('1410,00|83,1|39,29|1410m|',
INSTR('1410,00|83,1|39,29|1410m|', '|') + 1,
LENGTH('1410,00|83,1|39,29|1410m|')) TTR
FROM DUAL;