Sqlserver
 sql >> Base de Dados >  >> RDS >> Sqlserver

O gatilho do SQL Server insere valores da nova linha em outra tabela


tente isso para o servidor sql
CREATE TRIGGER yourNewTrigger ON yourSourcetable
FOR INSERT
AS

INSERT INTO yourDestinationTable
        (col1, col2    , col3, user_id, user_name)
    SELECT
        'a'  , default , null, user_id, user_name
        FROM inserted

go