pl/sql developer中用execute调用存储过程弹出‘无效的sql语句’解决方法

转自:http://www.myexception.cn/oracle-management/267605.html
初学存储过程,建立一个无参存储过程

--------创建存储过程-------
create or replace procedure GetUserAccout
as
    tatle number(10);
begin
    select count(*) into tatle from USERACCOUNT;
    dbms_output.put_line('总数为:'||tatle);
end;
--------执行存储过程------
execute GetUserAccout();

在执行如上存储过程时,报无效sql语句,在网上找到方法总结如下:
——解决方案——————–

1、使用call GetUserAccout();调用存数过程
在sql的执行窗口中只能这样调用"call GetUserAccout(); ",这样执行就是把"call GetUserAccout(); "当成一个sql语句;
而exec GetUserAccout();不是一个sql语句,是一个执行体,执行体调用必须在命令窗口,把这句话当成一个整体,也就是plsql块。但是要在sql窗口中执行也可以,这样调用:
    begin
        GetUserAccout();
    end;

2、新建一个commond 窗口。
在命令窗口中两种方式都可以调用exec GetUserAccout(); --这样,相当于执行一个plsql块,即把”GetUserAccout()“看成plsql块调用。
call GetUserAccout(); --这样,相当于,但用一个方法“GetUserAccout()”,把“GetUserAccout()”看成一个方法。

你可能感兴趣的:(存储过程)