MySQL数据库存储过程暂不支持修改 想要修改存储过程的内容需要先删除存储 再创建存储
# 查看 数据库中已创建的存储过程
show procedure status where Db = '库名';
# mysql修改存储过程一般是删除再创建
# 删除存储
drop procedure if exists 存储名;
# 创建存储
create PROCEDURE 存储名 ()
begin
存储体
end;
MySQL数据库存储过程暂不支持修改 想要修改存储过程的内容需要先删除存储 再创建存储
# 查看 数据库中已创建的存储过程
show procedure status where Db = '库名';
# mysql修改存储过程一般是删除再创建
# 删除存储
drop procedure if exists 存储名;
# 创建存储
create PROCEDURE 存储名 ()
begin
存储体
end;