您的位置:首页 > 其它

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

2017-06-01 17:45 776 查看
1、错误描写叙述



2、错误原因

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

call query_student(1);

3、解决的方法
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐