Created
May 15, 2012 22:03
-
-
Save augustovictor/2705490 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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