Page 1 of 1

The relation with primary key can be created using

Posted: Thu Jul 14, 2022 8:47 am
by answerhappygod
a) Create table instructor (Id, Name)
b) Create table instructor (Id, Name, primary key(name))
c) Create table instructor (Id, Name, primary key (Id))
d) Create table instructor ( Id unique, Name )