I trying to obtain from my table all the rows that cant be converted with the function TO_NUMBER
or values in which the function would fail, for instance if I have the following input:
SAMPLE_COL
'1.1'
'333'
'3A'
'5%'
It should retrieve:
SAMPLE_COL
'3A'
'5%'