create procedure stc_info(in Tid char(8), in type int, out info varchar(10)) IF type = 1 then set info = CAST((select count(Tno) from stc where Tno=Tid group by Tno) AS CHAR); ELSEIF type = 2 then set info = CAST((select AVG(Score) from stc where Tno=Tid group by Tno) AS CHAR); ELSE set type = 'error!!!'; end if;为什么错误
时间: 2024-02-10 22:07:45 浏览: 61
这个错误可能是因为在 IF 语句中缺少了 BEGIN 和 END 标记,应该将代码修改如下:
```
create procedure stc_info(in Tid char(8), in type int, out info varchar(10))
BEGIN
IF type = 1 THEN
set info = CAST((select count(Tno) from stc where Tno=Tid group by Tno) AS CHAR);
ELSEIF type = 2 THEN
set info = CAST((select AVG(Score) from stc where Tno=Tid group by Tno) AS CHAR);
ELSE
set info = 'error!!!';
END IF;
END;
```
在存储过程中,需要使用 BEGIN 和 END 来标记 IF 语句的开始和结束。此外,最后一个 ELSE 语句应该将 info 设置为 'error!!!',而不是将 type 设置为 'error!!!'。
相关问题
create procedure stc_info(in Tid char(8), in type int, out info varchar(10)) BEGIN IF type = 1 then set info = CAST((select count(Tno) from stc where Tno=Tid group by Tno) AS CHAR); ELSEIF type = 2 then set info = CAST((select AVG(Score) from stc where Tno=Tid group by Tno) AS CHAR); ELSE set type = 'error!!!'; end if; END;
这个存储过程的语法是正确的,它的作用是根据传入的 Tid 和 type 参数,返回不同的统计信息。如果 type = 1,则返回 Tid 对应的 stc 表中记录的数量;如果 type = 2,则返回 Tid 对应的 stc 表中 Score 字段的平均值;否则返回 'error!!!'。
需要注意的是,在存储过程中,应该使用 BEGIN 和 END 来标记代码块的开始和结束,这样可以避免语法错误。此外,最后一个 ELSE 语句应该将 info 设置为 'error!!!',而不是将 type 设置为 'error!!!'。
阅读全文