435 views
0 votes
0 votes
Consider the following schema for employees of a university database:

create table rep_manager

(emp_name char(20),

rep_manager_name char(20),

primary key emp_name,

foreign key (rep_manager_name) references rep_manager on delete cascade )

Here, table rep_manager consist of n records. Every employee in the university reports to some other employee for administrative purposes except the chancellor. For example, the dean reports to the chancellor, University professor reports to Dean and so on. How many records will remain in a table rep_manager after deleting the instance of Dean?

Please log in or register to answer this question.

Related questions

3 votes
3 votes
1 answer
1
Rajesh Raj asked Oct 2, 2016
363 views
Is strict schedule allowed in rigorous 2 PL ?
2 votes
2 votes
1 answer
3
1 votes
1 votes
1 answer
4
GATE2017TP asked Oct 23, 2016
362 views