Skip to content

Instantly share code, notes, and snippets.

@augustovictor
Created May 15, 2012 22:03
Show Gist options
  • Save augustovictor/2705490 to your computer and use it in GitHub Desktop.
Save augustovictor/2705490 to your computer and use it in GitHub Desktop.
create or replace procedure(v_nome funcionario.nome%type, v_funcao funcionario.funcao%type)
is
begin
insert into funcionario values(seqFuncionario.nextval, v_nome, v_funcao);
end;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment