I'm very new to SQL so forgive my ineptitude.
I'm trying to write a trigger that, on insert to table 1, inserts that record into table 2.
table 1 is [rps_lab_dev].[dbo].[Lab_Employee_Time_Off]
table 2 is [dbo].[Lab_Employee_Time_Off_Detail]
CREATE TRIGGER updatetrig
ON [rps_lab_dev].[dbo].[Lab_Employee_Time_Off]
FOR INSERT
AS
...
I'm unsure about where to go from here (if this is even correct, I don't have sql to check right now).Any direction would be greatly appreciated.