28/02/2011, 16:16
|
| | Fecha de Ingreso: diciembre-2010
Mensajes: 47
Antigüedad: 13 años, 11 meses Puntos: 0 | |
Respuesta: Trigger plsql Creo que se hace asi
create or replace trigger
before insert or update of cod_cli on cuentas for each row
declare
cont number;
begin
select count(cod_cli) into cont from clientes where cod_cli=:new.cod_cli;
if cont=0 then
insert into clientes values(:new.cod_cli,'1');
else
update clientes set total_ctas=cont+1 where cod_cli=:new.cod_cli;
end if;
end;
/ |