SQL: how do I find if the contents of a varchar column are numeric ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T10:58:18Zhttp://stackoverflow.com/feeds/question/1080178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric2SQL: how do I find if the contents of a varchar column are numeric ?Leonel2009-07-03T17:07:01Z2009-07-04T03:26:30Z
<p>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:</p>
<pre><code>select to_number(col1) from tbl1 where ...
</code></pre>
<p>fails because for some row the contents of the column are not numeric.</p>
<p>What's a <code>select</code> query I can use to find these rows ?</p>
<p>I'm using an Oracle database</p>
<p>I'm looking for something like a <code>is_number</code> function.</p>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric/1080185#10801857Answer by Aaron Alton for SQL: how do I find if the contents of a varchar column are numeric ?Aaron Alton2009-07-03T17:08:21Z2009-07-03T17:08:21Z<p>There is no native "isnumeric" function in oracle, but this link shows you how to make one:
<a href="http://www.oracle.com/technology/oramag/oracle/04-jul/o44asktom.html" rel="nofollow">http://www.oracle.com/technology/oramag/oracle/04-jul/o44asktom.html</a></p>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric/1080284#10802841Answer by tuinstoel for SQL: how do I find if the contents of a varchar column are numeric ?tuinstoel2009-07-03T17:38:00Z2009-07-03T17:38:00Z<p>Read this: <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1794145000346577404" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1794145000346577404</a></p>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric/1081398#10813981Answer by Gary for SQL: how do I find if the contents of a varchar column are numeric ?Gary2009-07-04T03:04:56Z2009-07-04T03:04:56Z<p>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).</p>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric/1081424#10814241Answer by Brian for SQL: how do I find if the contents of a varchar column are numeric ?Brian2009-07-04T03:26:30Z2009-07-04T03:26:30Z<p>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:</p>
<pre><code>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
</code></pre>
<p>Below is the output of the above:</p>
<pre><code>INPUT RESULT
234 234
abc -
234234abc -
100.4 100.4
-100.4 -
</code></pre>