I am trying to retrieve records where a varchar field has a number. I want to make a select list of numbers to retrieve.
Of course, I started with the list of numbers but keep getting the error "invalid number" at runtime.
I got rid of the list and tried to check a simple number, but still get the error with this code.
AND (to_number(nvl(PAT_ENC_ES_AUD_ACT.ES_AUDIT_USER_ID,0)) > 9)
I only want the records that have numbers that will be in my select list. In SQL Server, I could use the IsNumeric function. Is there something similiar in Oracle?
Of course, I started with the list of numbers but keep getting the error "invalid number" at runtime.
I got rid of the list and tried to check a simple number, but still get the error with this code.
AND (to_number(nvl(PAT_ENC_ES_AUD_ACT.ES_AUDIT_USER_ID,0)) > 9)
I only want the records that have numbers that will be in my select list. In SQL Server, I could use the IsNumeric function. Is there something similiar in Oracle?