vote up 2 vote down star

One of the columns in my table is a varchar that is supposed to contain only numeric values (I can't change the definition to a number column). Thus my SQL query:

select to_number(col1) from tbl1 where ...

fails because for some row the contents of the column are not numeric.

What's a select query I can use to find these rows ?

I'm using an Oracle database

I'm looking for something like a is_number function.

flag

74% accept rate

4 Answers

vote up 7 vote down check

There is no native "isnumeric" function in oracle, but this link shows you how to make one: http://www.oracle.com/technology/oramag/oracle/04-jul/o44asktom.html

link|flag
vote up 1 vote down

You may need to decide for yourself what is numeric. Oracle will happily convert character strings in scientific notation (eg '1e10') to numbers, but it will baulk at something like '1,000' (because of the comma).

link|flag
The decimal separator depends on the nls-settings: NLS_NUMERIC_CHARACTERS – tuinstoel Jul 4 at 5:51
vote up 1 vote down

I don't disagree that the best solution is to follow Tom Kyte's examples others have linked to already. However, if you just need something that is SQL only because you unfortunately do not have the relationship with your DBA to add pl/sql functions to your schema you could possibly leverage regular expressions to meet a basic need. Example:

select '234', REGEXP_SUBSTR('234','^\d*\.{0,1}\d+$') from dual
union all
select 'abc', REGEXP_SUBSTR('abc','^\d*\.{0,1}\d+$') from dual
union all
select '234234abc', REGEXP_SUBSTR('234234abc','^\d*\.{0,1}\d+$') from dual
union all
select '100.4',  REGEXP_SUBSTR('100.4','^\d*\.{0,1}\d+$') from dual
union all
select '-100.4',  REGEXP_SUBSTR('-100.4','^\d*\.{0,1}\d+$') from dual
union all
select '',  REGEXP_SUBSTR('','^\d*\.{0,1}\d+$') from dual

Below is the output of the above:

INPUT      RESULT
234        234
abc        -
234234abc  -
100.4      100.4
-100.4     -
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.