oracle 多行信息转成一行显示

来源:互联网 发布:淘宝童装平铺拍照技巧 编辑:程序博客网 时间:2024/05/29 16:16

网上看到的资料,好记性不如烂笔头

create  or   replace   function   isNumber(p_in   varchar2)  return   boolean  as  

        i   number;  

begin  

        i:=to_number(p_in);  

        return  true;  

exception        

        when   others  then    

              return  false;  

end   ;