Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これを実現する方法を誰か教えてもらえますか?
設定のようです。
助けてください!
CREATE TRIGGER trgAfterDelete ON <yourFirsttable> AFTER DELETE AS select @blah = <yourCol1>, @blih = <yourCold2> from deleted; insert into <YourSecondTable>(..., blah, blih) values(..., @blah, @blih); GO