存储过程问题,求大神! create or replace procedure procedure_info(
id in info.nid%type,name out info.name%type)
is
begin
select info.name into name
from info
where info.nid=id ;
end procedure_info;
declare
names info.name%type;
begin
procedure_info(1,names);
select nid,name from info where info.name=names; --这边出现了错误!
dbms_output.put_line(names);
end;
错误: 在select语句中缺少了into子句。
这是什么问题呢?
如果换成:
declare
names info.name%type;
begin
procedure_info(1,names);
dbms_output.put_line(names);
end;
可以输出names的值!
存储select
分享到:
------解决方案--------------------
在Oracle的PL/SQL中,SELECT里面必须要配合INTO一起使用的
需要定义变量来接受SELECT出来的结果.
select nid,name from info where info.name=names; --这边出现了错误!