SQL: how do I find if the contents of a varchar column are numeric ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:58:18Z http://stackoverflow.com/feeds/question/1080178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric 2 SQL: how do I find if the contents of a varchar column are numeric ? Leonel 2009-07-03T17:07:01Z 2009-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#1080185 7 Answer by Aaron Alton for SQL: how do I find if the contents of a varchar column are numeric ? Aaron Alton 2009-07-03T17:08:21Z 2009-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#1080284 1 Answer by tuinstoel for SQL: how do I find if the contents of a varchar column are numeric ? tuinstoel 2009-07-03T17:38:00Z 2009-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#1081398 1 Answer by Gary for SQL: how do I find if the contents of a varchar column are numeric ? Gary 2009-07-04T03:04:56Z 2009-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#1081424 1 Answer by Brian for SQL: how do I find if the contents of a varchar column are numeric ? Brian 2009-07-04T03:26:30Z 2009-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>