ORA-06553:PLS-306:wrong number or types of arguments in call to ''

来源:互联网 发布:网络打印共享器怎么用 编辑:程序博客网 时间:2024/04/27 00:17

1、错误描述



2、错误原因

create or replace procedure query_student(id in int,name out varchar2) isbegin  select t.name into name from t_stu_info t where t.id = id; end query_student;

call query_student(1);

3、解决办法

1 0