规则 2.10:create、begin、end、exception独立成行,顶格书写不缩进,但是作为程序块嵌套在程序中时仍然需要缩进4格。

来源:互联网 发布:最好的电脑桌面软件 编辑:程序博客网 时间:2024/06/01 10:43
create or replace function f_functionname(
) return XXX is
begin
exception
    when others then
end f_functionname;
0 0