使用call在sqlplus中呼叫procedure和funtion!

warehouse發表於2009-07-23
call 不可以使用在plsql中,只能在sqlplus中使用。[@more@]

SQL> create or replace procedure proc_test
2 is
3 v_count number;
4 begin
5 select count(*) into v_count from tt;
6 dbms_output.put_line(v_count);
7 end;
8 /

過程已建立。

SQL> set serveroutput on
SQL> call proc_test();
2

呼叫完成。

--使用call呼叫過程時即使過程沒有引數依然要加上括號

SQL> exec proc_test;
2

PL/SQL 過程已成功完成。
SQL> create or replace function fun_test(p_a int , p_b int)
2 return number
3 is
4 begin
5 return p_a/p_b;
6 end fun_test;
7 /

函式已建立。

SQL> select fun_test(10,2) from dual;

FUN_TEST(10,2)
--------------
5

SQL> call fun_test(10,2) ;
call fun_test(10,2)
*
第 1 行出現錯誤:
ORA-06576: 不是有效的函式或過程名

--由於函式有返回值,所以要使用繫結變數來接收。
SQL> variable i number;
SQL> call fun_test(10,2) into :i;

呼叫完成。

SQL> print i;

I
----------
5

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-1024493/,如需轉載,請註明出處,否則將追究法律責任。

相關文章