0
I need to take an average of payment conditions in the database and I came across the situation where the condition column is a string and it can receive parcel values separated by bar. I need to get the last value after the last bar, percentage sign or value. Here’s an example:
select '28/30/56', '10%60%30%', '12 dias'
from dual;
The output should be: 56, 30, 12...