Hi Guys,
I've this issue with this kind if record.
CRAETE TABLE TBL1 (COL1 VARCHAR2 (10));
insert into TBL1 values ('+ 1200');
insert into TBL1 values ('+ 2500');
insert into TBL1 values ('-3600');
I must convert into number and keep the result (e.g.) plus 1200 if first char = + and minus (3600) if first char is = -
Thank you in advance if you can help