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

时间:2015-12-13 00:48:27   收藏:0   阅读:1284

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、解决办法

原文:http://blog.csdn.net/you23hai45/article/details/50279295

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!