Greetings
When I do an INSERT INTO myTable is the inserted 'virtual' table available only in the scope of the trigger?
I have three table
Jobs
JobID
Equipment
EquipmentID
JobEquipment
JobEquipmentID
JobID
EquipmentID
When I do an INSERT into Jobs I also pass in a parameter of EquipmentIDs. Now how do I INSERT those into JobEquipment table?
Thanks