gpt4 book ai didi

mysql - mysql 中的存储过程在工作台中显示错误

转载 作者:行者123 更新时间:2023-11-29 10:56:55 27 4
gpt4 key购买 nike

我正在 MySQL 工作台中创建存储过程。虽然代码看起来不错,但显示了一些我无法弄清楚的错误。请帮忙。

create procedure UpdateAge(in employeeId int, in age int)
begin
update abc.employeedata set EmployeeAge= age where EmployeeId= employeeId ;
end

错误是:发现无关的输入。预期输入结束

最佳答案

由于只有一条语句,因此您可能不需要 beginend。尝试一下

create procedure UpdateAge(in employeeId int, in age int)
update abc.employeedata set EmployeeAge= age where EmployeeId= employeeId ;

关于mysql - mysql 中的存储过程在工作台中显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42888026/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com