Logo 
Search:

Oracle Articles

Submit Article
Home » Articles » Oracle » Common StatementsRSS Feeds

CREATE TRIGGER

Posted By: Lewis Evans     Category: Oracle     Views: 2133

CREATE TRIGGER with example.

CREATE TRIGGER

create trigger trigger_name
  on table_name
  for {insert, update, delete}
  as SQL_Statements

CREATE TRIGGER statement creates a trigger object in the database that will execute its SQL statements when its corresponding table is modified through an INSERT, UPDATE, or DELETE. Triggers can also call stored procedures to execute complex tasks. 

  
Share: 

 
 
 

Didn't find what you were looking for? Find more on CREATE TRIGGER Or get search suggestion and latest updates.

Lewis Evans
Lewis Evans author of CREATE TRIGGER is from London, United Kingdom.
 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!