16/12/2010, 06:56
|
| | Fecha de Ingreso: junio-2007
Mensajes: 891
Antigüedad: 17 años, 5 meses Puntos: 43 | |
Respuesta: saber si es numero o no en PL/SQL function ES_NUMBER(str in varchar2) return BOOLEAN IS
N number;
begin
N := TO_NUMBER(str);
return (TRUE);
Exception WHEN OTHERS then
return (FALSE);
end; |