Viewing post 1 (of 1 total)
I have an example
create TRIGGER InsertarPeriodoForUpdate
ON dbo.calificacion_IQA
for update
AS
BEGIN
SET NOCOUNT ON;
declare @id int
declare @mes int
select @mes=mes_calificadcion, @id = id_calificacion_iqa from updated
if @mes=1...
July 29, 2013 at 11:41 am
#1636724