1
create procedure cadastrar_nadador (out nome_v varchar(80),out sexo_v varchar(1),out nascimento_v date,out patrocinio_v varchar(80))
begin
insert into nadador(nome,sexo,nascimento,patrocinio)
values (nome_v,sexo_v,nascimento_v,patrocinio_v);
end;
ideal would be to show the error and the table structure.
– Michel Simões
Put the Error and your table structure here. People vote negative but don’t want to comment here p/ help ..
– Thiago Loureiro