I have created a function in postgres with the below query but it says "function is_numeric(character varying) does not exist." while executing the function.
I tried with "isnumeric" also, but no luck. same message.
Is there any alternate way to check whether the data value is numeric or not.
v_stmt := 'update '||user$get_name_table( id )||
' set err = err+1,err_val = err_val+1
where is_numeric('||u.column_name||')=0' ;