0
I have a table which does not have to be remodeled, it is composed by a CLOB field which has decimal values separated by point ex:(123.12)
I need this field to be returned to me in the result as a number, decimal, float or any type that is real numeric.
How do I do this in select ?
I’ve tried to do:
Select TO_NUMBER(TO_CHAR(CLOB)) FROM TABLE, for example.
https://stackoverflow.com/questions/12860526/how-to-convert-clob-to-varchar2-inside-oracle-pl-sql converts to char and then to number , attention to the used number format https://Docs.oracle.com/cd/B19306_01/server.102/b14200/sql_elements004.htm using the correct type prevents trivial things from ...
– Motta