In web java when I call the procedure list of the bd, I get the name "Juan Luis" (as it was created in the bd) but when I select edit I get only "Juan"
drop procedure if exists actu_alumno;
delimiter $$
create procedure actu_alumno(in nombre varchar(50), in sexo char(1),in edad int,in direccion varchar(50),in cod_grado char(6),cod_apoderado char(6),in cod_matricula char(6),in cod_alumno char(6))
begin
update alumno set nombre=nombre, sexo=sexo,edad=edad,direccion=direccion,cod_grado=cod_grado,cod_apoderado=cod_apoderado,cod_matricula=cod_matricula
where cod_alumno=cod_alumno;
end$$
delimiter ;