Oracle isnumber()


Una función útil para saber si un campo texto es numérico o no.

create or replace function IsNumber(
a_Text varchar2
) return char is
t_Test number;
begin
begin
t_Test := to_number(a_Text);
return 'Y';
exception when value_error then
return 'N';
end;
end;

Comentarios

Entradas populares