Informe

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

select *

from employees
where employee_id = 102;
create sequence seq_1
increment by 1
start with 1
nomaxvalue;
create procedure or replace alta_dpto
(nom in departamento.nombre%type,
locali in departamento.localidad%type)
is
begin
insert into departamento(coddpto,nombre,codgerente,localidad)
values (seq_1.nextvalue,nom,seq_1.nextvaule,locali);
end

You might also like