Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Convert char to number ?
Simple question..
I have a column markcol1
I need to convert it to a number and sum it but I can't guarantee all
values will be numbers..
For example
MARKCOL1
IF I do...
SELECT SUM(TO_NUMBER(markcol1)) from mytable;
I get...
ORA-01722: invalid number
How do I ignore any character expressions....
Tried also
SELECT SUM(TO_NUMBER(NVL(markcol1,0))) from mytable;
But of course that did not work...
What do I use?
Sent via Deja.com
http://www.deja.com/
Received on Wed Jan 24 2001 - 09:34:32 CST
![]() |
![]() |