How to create Trigger?
What is trigger ? How to create Trigger?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mohammed IbrahimPosted Aug 19, 2015, 2:48 AM
Upendra Pratap ShahiPosted Aug 19, 2015, 2:28 AM
Hemlata KushwahaPosted Aug 19, 2015, 1:36 AM
Sumit JoshiPosted Aug 19, 2015, 1:24 AM
Rahul PrajapatPosted Aug 19, 2015, 1:16 AM
CREATE [OR REPLACE ] TRIGGER Trigger_Name
ON Table_Name
{BEFORE | AFTER | INSTEAD OF }
{INSERT [OR] | UPDATE [OR] | DELETE}
AS
Begin
Declaration Part
{
}
Select Part
{
// Initialize Variables
}
Executable-Code
EXCEPTION
Exception-Handling-Code
END;
Sumit JoshiPosted Aug 19, 2015, 1:09 AM
Shakti SaxenaPosted Aug 19, 2015, 1:01 AM
Basit KhanPosted Aug 19, 2015, 12:30 AM
Amitesh VermaPosted Aug 3, 2015, 7:42 AM
Rajeesh MenothPosted Aug 2, 2015, 5:29 AM
Pankaj Kumar ChoudharyPosted Aug 1, 2015, 11:38 PM