Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Update field in INSERTED inside trigger

    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...

Viewing post 1 (of 1 total)