Question: Assignment Instructions ` ` ` Create table Student ( ssn numeric primary key, name char ( 5 0 ) , address varchar ( 1 0

Assignment Instructions
```
Create table Student
(
ssn numeric primary key,
name char(50),
address varchar(100),
major char(10)
);
create view CS_Student as
select ssn, name, address from student where major ='CS';
```
create triggers on this view. If a tuple is inserted into the view, then insert it into the base table. If a tuple is deleted from the view, then delete it from the base table.
Assignment Instructions ` ` ` Create table

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!