Question: Use the following create statement: create table emp ( eno int, pid int, name char ( 5 0 ) , mgrNo int, xyz char (

Use the following create statement:
create table emp (
eno int,
pid int,
name char(50),
mgrNo int,
xyz char(3) references dept(dno),
unique (pid, name, mgrNo),
primary key (eno, xyz, pid),
foreign key mgrNo references emp (eno))
How many keys are there in table emp?
a.1
b.2
C.3Use the following create statement:
create table emp (
eno int,
pid int,
name char(50),
mgrNo int,
xyz char(3) references dept(dno),
unique (pid, name, mgrNo),
primary key (eno, xyz, pid),
foreign key mgrNo references emp (eno))
How many keys are there in table emp?
a.1
b.2
c.3
d.4
 Use the following create statement: create table emp ( eno int,

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 Databases Questions!