create trigger eliminarProducto on producto for delete as print 'Se eliminó un registro en la tabla producto'
go
delete from Producto where id_Producto = '1234'
/*==============================================================*/ /* Table: ACTUALIZAR */ /*==============================================================*/ create trigger actualizarProducto on producto for update as print 'Se actualizo un registro en la tabla producto'
go
update Producto set Precio_Uni= '0.80',Stock= '54' where id_Producto = '1233'
Respuesta:
el 230.11232ii1155.772.7