Hi,
CREATE TRIGGER MyTrig ON dbo.MyTable AFTER INSERT AS
-- Here you can add the queries which you want to execute each time INSERT on table MyTable was executed
-- Note! Triggers are NOT something you can count on! For example bulk Insert does not fire triggers by default, which mean that someone can INSERT rows and the trigger will not be executed!
-- DML triggers use the **deleted** and **inserted** logical tables.
-- The inserted table includes the data of the rows which you INSERT to the table
-- Therefore, you can simple use INSERT to the revision table from the inserted table
INSET revision (<column list>) SELECT <Column list> from inserted
GO