码迷,mamicode.com
首页 > 数据库 > 详细

oracle 字符转换成数字

时间:2014-10-27 19:08:59      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   div   on   log   

1>函数转换

select nvl2(translate(a.data, \1234567890., \), null, a.data) n, a.data
  from rpt_detail a;

2>自定义函数

1 create   or   replace   function   isNumber(p_in   varchar2)   return   boolean   as  
2         i   number;  
3 begin  
4         i:=to_number(p_in);  
5         return   true;  
6 exception        
7         when   others   then    
8               return   false;  
9 end   ; 

 

oracle 字符转换成数字

标签:style   blog   io   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/guohu/p/4054765.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!