zoukankan      html  css  js  c++  java
  • oracle改进之将阿拉伯数字转换成中文数字

      本博客是自己在学习和工作途中的积累与总结,仅供自己参考,也欢迎大家转载,转载时请注明出处

       http://www.cnblogs.com/king-xg/p/6839738.html

     将阿拉伯数字转换成中文汉字,方法自定义函数
      

      

    create or replace function formate(val in number)
    return varchar2 is res varchar2(6);
    
    begin
      if val=1 then res:='';
      elsif val=2 then res:='';
      elsif val=3 then res:='';
      elsif val=4 then res:='';
      elsif val=5 then res:='';
      elsif val=6 then res:='';
      elsif val=7 then res:='';
      elsif val=8 then res:='';
      elsif val=9 then res:='';
      elsif val=10 then res:='';
      elsif val=11 then res:='十一';
      elsif val=12 then res:='十二';
      elsif val=13 then res:='十三';
      elsif val=14 then res:='十四';
      elsif val=15 then res:='十五';
      elsif val=16 then res:='十六';
      elsif val=16 then res:='十七';
      elsif val=16 then res:='十八';
      elsif val=16 then res:='十九';
      elsif val=16 then res:='二十';
      elsif val=16 then res:='二十一';
      elsif val=16 then res:='二十二';
      elsif val=16 then res:='二十三';
      elsif val=16 then res:='二十四';
      elsif val=16 then res:='二十五';
      elsif val=16 then res:='二十六';
      elsif val=16 then res:='二十七';
      elsif val=16 then res:='二十八';
      elsif val=16 then res:='二十九';
      elsif val=16 then res:='三十';
      elsif val=16 then res:='三十一';
      elsif val=16 then res:='三十二';
      elsif val=16 then res:='三十三';
      elsif val=16 then res:='三十四';
      elsif val=16 then res:='三十五';
      elsif val=16 then res:='三十六';
      elsif val=16 then res:='三十七';
      elsif val=16 then res:='三十八';
      elsif val=16 then res:='三十九';
      elsif val=16 then res:='四十';
      elsif val=16 then res:='四十一';
      elsif val=16 then res:='四十二';
      else
        res:='';
      end if;
      return res;
    end;

     如果还有延展,就往后叠加elsif即可。

  • 相关阅读:
    如何快速生成API并进行测试
    如何开始使用接口自动化测试脚本
    一些网上密码学资源(转载)
    手把手硬件电路详细设计过程(转载)
    触发器(trigger)的作用???
    去面试字节跳动啦!
    2020年白领年终奖报告来了,平均值为7826元
    12 个顶级 Bug 跟踪工具
    接口的幂等性怎么设计?
    魔改一波合成大西瓜!代码已开源~
  • 原文地址:https://www.cnblogs.com/king-xg/p/6839738.html
Copyright © 2011-2022 走看看