1
Good morning !
I need to return the value inside a string 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;
Ricardo Monstroo :) ! Thanks man ! I had managed to do with several SUBSTR and INSTR, but your solution got much better, thanks again !
– Eduardo Rafael Moraes