mysql 存储过程提示错误!!求高人解答

如题所述

create procedure student()
begin
select stu_no from student; -- 加个分号
end;

-- 如果加了分号还不行的话,提示的错误应该是
错误:PLS-00428: 在此 SELECT 语句中缺少 INTO 子句
原因是单独的一个select语句在存储过程中是不应该存在的,所以应该改成select stu_no into 的模式
create procedure student()
is
v_stu_no student.stu_no%TYE;
begin
select stu_no into v_stu_no from student where rownum <= 1; -- 改成select into 字句
end;
温馨提示:答案为网友推荐,仅供参考
相似回答
大家正在搜