欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ORACLE常用函数收藏

程序员文章站 2022-03-03 17:20:42
...

1.substr

SUBSTR(string,start,count)

取子字符串,从start开始,取count个

2.to_number

 

例子

declare v_c number; v_pc varchar2(100); v_p number; begin select d.data_name into v_pc from data_dictionary d left join data_type t on d.data_type_id=t.data_type_id where d.data_type_id='0017' and d.status=1; v_c:=to_number(substr(v_pc,1,1)); v_p:=to_number(substr(v_pc,3,1)); dbms_output.put_line(v_c/(v_c+v_p)); end;

 

3.nvl

直接处理NULL值,NVL有两个参数:NVL(x1,x2),x1和x2都式表达式,当x1为null时返回X2,否则返回x1。

但是实际怎么没效果呢?比如:

 

select SUM(nvl(t.tc_fee,0))*v_datano into v_thirdcost from THIRD_COST T; if v_thirdcost is null then v_thirdcost:=0; end if;

 

 还是要判断一下才行,奇怪?

4.round(,)

返回舍入小数点右边n2位的n1的值,n2的缺省值为0,这回将小数点最接近的整数,如果n2为负数就舍入到小数点左边相应的位上,n2必须是整数。