开发PL/SQL子程序——函数
摘要:
函数用于返回特定数据。如果应用程序经常需要执行sql语句返回特定数据,那么可以基于这些操作建立特定的函数。通过使用函数,不仅可以简化客户端应用程序的开发和维护,而且可以提高应用程序的执行性能。建立函数例子: 返回雇员工资的函数create or replace function get_sal (name in varchar2)return number asv_sal emp.sal%type;beginselect sal into v_sal from emp ;where upper(ename)=upper(name);return v_sal;exceptionwhen no_d 阅读全文
posted @ 2013-05-02 12:20 LinuxPanda 阅读(263) 评论(0) 推荐(0) 编辑