RE:

  • Hi,

    I need a guid line to write trigger in T SQL Server 2000 in such situation like using if conditions.

    e.g:

    if a employee details is updated by an  operator..

     

    i need the trigger to insert the opartor & the employee details in to some other table.

  • In your update trigger, add the following:

    IF UPDATE(EmployeeColumn)

    BEGIN

     

    --Your code here

    END

     

  • Thanks Peter ,let me try

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply