Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Experiment No.

7
Title: To demonstrate the use of Trigger
A) Create Table:

B) Insert values into table:

C) Output:
D) Create Before Trigger:

E) Insert into Trigger

F) Update

G) Drop Trigger:
Drop Trigger display_salary_changes

H) Create 2nd Table

I) Create After Trigger


J) Insert statement
insert into employee(id,name,age,city,salary)
values(101,'Ajay rewatkar,22,Nagpur,56000)

K) Update statement
Update employee Set salary+8484 where id=102;

L) Drop Trigger
Drop Trigger display_sal_changes;

You might also like