Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hello I want create one insert trigger in that i have to table that

Table hardwaremaster

 hardwareid     hardwarename      quantity
     1             HDD              5          and second table
     2             RAM              2

Table transdetails

  transid        hardwareid
     1               1
     2               1
     3               1
     4               1
     5               1
     6               2
     7               2

Here i want to create trigger in that once value come in hardwaremaster then it will update table transdetails . then how to write trigger in to it

share|improve this question

1 Answer

This can help you :

 CREATE TRIGGER TR_INS_WhatYouWant
    ON hardwaremaster
    AFTER INSERT
    AS
    DECLARE @hardwareid  INT
    SELECT @hardwareid  = hardwareid  FROM inserted
    GO

    INSERT INTO dbo.transdetails (hardwareid) VALUES (@hardwareid)

But I suggest to read this before make trigger work :

CREATE TRIGGER

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.