I have this database that contains varchar.
I want to know which entries contain numerical values. I tried REGEXP_COUNTothers, but I work on 9i and I think this is for 10g>
How can i achieve this?
I tried:
select to_number( my_column ) from my_table
But this does not work, because not all of them are numerical.
EDIT
Background.
This table contains employee identifiers, all of which are numeric (read 1234 or 24523 or 6655)
In the database startup, when the employee identifier was unknown, instead of using something like -1, they entered texts such as:
NA, N/A, NONE, UNK, UNKNOW, TEST, EXTERNAL, WITHOUT_ID
Indeed, the main mistake is that the column varchar, not the number, is as it should.
, , , ( ), db 9i, RegExp